declare class AbstractCustomerActive {
    /**
    * The customer's ID in the merchant's system.
    */
    'customerId'?: string;
    /**
    * The customer's email address.
    */
    'emailAddress'?: string;
    /**
    * The customer's family or last name.
    */
    'familyName'?: string;
    /**
    * The customer's given or first name.
    */
    'givenName'?: string;
    /**
    * The language that is linked to the object.
    */
    'language'?: string;
    /**
    * Allow to store additional information about the object.
    */
    'metaData'?: {
        [key: string]: string;
    };
    /**
    * The customer's preferred currency.
    */
    'preferredCurrency'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { AbstractCustomerActive };
