import { DepositPayerBankAccount } from './depositPayerBankAccount';
import { DepositPayerDigitalWalletDto } from './depositPayerDigitalWalletDto';
export interface DepositPayer {
    bank_account?: DepositPayerBankAccount;
    country_code?: string;
    digital_wallet?: DepositPayerDigitalWalletDto;
    name?: string;
}
export declare namespace DepositPayer {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=depositPayer.d.ts.map