import { Country } from '../../request/Country';
import { Fiat } from './Fiat';
/**
 * Customer
 */
export declare class Customer {
    id: string;
    externalId: string;
    /**
     * Country of the Customer
     */
    customerCountry?: Country;
    accountingCurrency?: Fiat;
    providerCountry?: Country;
    active: boolean;
    enabled: boolean;
}
