export declare class CustomerDTO {
    constructor();
    id: string;
    name: string;
    nameLegal?: string;
    street1?: string;
    street2?: string;
    city?: string;
    state?: string;
    zipcode: string;
    email: string;
    phone?: string;
    externalId?: string;
    industry?: string;
    status?: string;
    created?: Date;
}
export declare function customerFields(lang: string): {
    index: number;
    name: string;
    label: string;
    description: string;
    isRequired: boolean;
    dataType: string;
    display: boolean;
    isCustomField: boolean;
    isDependent: boolean;
}[];
