import { EDocType, IAddress } from '../../general';
import { ICustomerData } from '../interfaces/i-customer-data';
export declare class CustomerDataEntity implements ICustomerData {
    address: IAddress | null;
    doc: string;
    docType: EDocType;
    name: string;
    internationalCode: string;
    phoneNumber: string;
    email: string;
    constructor(data?: Partial<CustomerDataEntity>);
}
