import { PaymentAcceptanceAddress } from './paymentAcceptanceAddress';
export interface PaymentAcceptanceCustomer {
    address?: PaymentAcceptanceAddress;
    business_name?: string;
    client_secret?: string;
    created_at?: Date;
    email?: string;
    first_name?: string;
    id?: string;
    last_name?: string;
    merchant_customer_id?: string;
    metadata?: {
        [key: string]: string;
    };
    phone_number?: string;
    request_id?: string;
    updated_at?: Date;
}
export declare namespace PaymentAcceptanceCustomer {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=paymentAcceptanceCustomer.d.ts.map