import { EntityContainerModel, bl_fi_entity_hdr_RowInterface, bl_fi_mst_entity_line_RowInterface } from 'blg-akaun-ts-lib'; export declare class CustomerViewModel { bl_fi_mst_entity_hdr: bl_fi_entity_hdr_RowInterface; bl_fi_mst_entity_line: bl_fi_mst_entity_line_RowInterface[]; guid: string; customer_code: string; name: string; txn_type: string; id_type: string; id_no: string; id_no_old: string; gender: string; dob: string; fiscal_year_end_month: string; tax_reg_number: string; tax_category: string; country_alpha3_code: string; ccy_code: string; descr: string; default_arap_type: string; phone: string; email: string; website_url: string; business_nature_code: string; classification: string; alternate_tax_no_1: string; alternate_tax_no_2: string; gst_number: string; wht_tax_number: string; nationality: string; ethnicity: string; language_code: string; title: string; region_code: string; marital_status: string; occupation: string; job_title: string; job_industry: string; job_role: string; ref_1: string; ref_2: string; status: string; created_date: string; updated_date: string; addresses_json: JSON; } export declare function containerToViewModel(customer: EntityContainerModel): CustomerViewModel;