export declare class EmployerInvoiceItem { id: string; operationType: string; employeeName: string; employeeStatus: string; employeeHeadOfficeIdentity: string; userSocialSecurityNumber: string; ccbNumber: string; amount: number; type: string; constructor(data?: any | EmployerInvoiceItem | DjangoEmployerInvoiceItem); } export interface DjangoEmployerInvoiceItem { id: string; operation_type: string; employee_name: string; employee_status: string; employee_head_office_identity: string; user_social_security_number: string; ccb_number: string; amount: string; type: string; }