import { PartyTypesService } from "./party-types.service";
import { CreatePartyTypeDto } from "./dto/create-party-type.dto";
import { UpsertPartyPaymentDto } from "./dto/upsert-party-payment.dto";
export declare class PartyTypesController {
    private readonly partyTypesService;
    constructor(partyTypesService: PartyTypesService);
    create(createPartyTypeDto: CreatePartyTypeDto, request: Request): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    upsertPartyPayment(partyId: number, upsertPartyPaymentDto: UpsertPartyPaymentDto, request: Request): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
}
