interface BankAccountProps {
    onSubmit: (data: any) => void;
    onBack: () => void;
    defaultValues?: any;
    context?: any;
    offeringParams?: any;
}
declare const BankAccount: (props: BankAccountProps) => import("react/jsx-runtime").JSX.Element;
export default BankAccount;
