import { DjangoTimeStamped, TimeStamped } from '../django'; export declare class EmployerPayrollSettings implements TimeStamped { id: string; transitoryAccountUuid: string; checkingAccountUuid: string; accountNumber: string; branchNumber: string; communicationEmail: string; accountCnpj: string; created: Date; modified: Date; constructor(data?: string | EmployerPayrollSettings | DjangoEmployerPayrollSettings); get djangoModel(): { id: string; transitory_account_uuid: string; checking_account_uuid: string; account_number: string; branch_number: string; communication_email: string; account_cnpj: string; }; } export declare function parseEmployerPayrollSettings(data?: string | EmployerPayrollSettings | DjangoEmployerPayrollSettings): EmployerPayrollSettings; export interface DjangoEmployerPayrollSettings extends DjangoTimeStamped { id?: string; transitory_account_uuid?: string; checking_account_uuid?: string; account_number?: string; branch_number?: string; communication_email?: string; account_cnpj?: string; created?: string; modified?: string; }