import { Employee } from '../employee'; import { Invoice } from '../invoice'; export declare class PrepaymentProposal { employee: Employee; contentType: string; objectId: string; invoice: Invoice; interestDelayed: number; interestDefault: number; fine: number; bankingChargeUrl: string; isDismissal: Invoice; constructor(data?: any | PrepaymentProposal | DjangoPrepaymentProposal); } export interface DjangoPrepaymentProposal { employee: Employee; content_type: string; object_id: string; invoice: Invoice; interest_delayed: number; interest_default: number; fine: number; banking_charge_url: string; is_dismissal: Invoice; }