import BankAccount from "../../entities/bank-account.js";
import { IBankAccountParams } from "../../services/payment-gateway/abstract.js";
declare class BankAccountAddInput implements IBankAccountParams {
    userId: string;
    lastDigits: string;
    holderName?: string | null;
    bankName?: string | null;
    bankAccountId?: string;
}
/**
 * Add new bank account
 */
declare const add: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, BankAccountAddInput, Record<string, any>, {
    entity: BankAccount;
}>;
export { add as default };
