export declare class FundCallAllocationDto {
    repartitionKeyId: string;
    amount: number;
}
export declare class CreateFundCallDto {
    complexId: string;
    fiscalYearId: string;
    label: string;
    period: string;
    dueDate: string;
    allocations: FundCallAllocationDto[];
}
