import { PartyTypeCategory } from "../entities/party-type.entity";
import { PaymentTypeEnum } from "../enums/payment-type.enum";
export declare class UpsertPartyPaymentDto {
    party_type: PartyTypeCategory;
    payment_type: PaymentTypeEnum;
    amount: number;
    start_date?: string;
    end_date?: string;
    company_id: number;
    project_id?: number;
    notes?: string;
    paid_date?: string;
}
