/** Missing description */
export interface BankAccountCreation {
    /** Bank account BIC */
    bic: string;
    /** Custom description of this account */
    description?: string;
    /** Bank account IBAN */
    iban: string;
    /** Bank account owner's address */
    ownerAddress: string;
    /** Bank account owner's name */
    ownerName: string;
    /** Set as default payment mean once validated */
    setDefault?: boolean;
}
//# sourceMappingURL=BankAccountCreation.d.ts.map