import React from 'react';
import type { PaymentMethodVirtualBankIncompleteInfo } from '~/domains/paymentMethods';
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '~/modals/CheckoutModal/stepTransition';
export type VirtualFiatAccountNext = Record<string, never>;
export type VirtualFiatAccountState = CheckoutModalCommonState & {
    paymentMethodInfo: PaymentMethodVirtualBankIncompleteInfo;
};
export declare const VirtualFiatAccountInfo: ModalStepInfo<FunCheckoutStep.CREATE_FIAT_ACCOUNT>;
export declare function VirtualFiatAccount({ onNext, }: ModalStepComponentProps<FunCheckoutStep.CREATE_FIAT_ACCOUNT>): React.JSX.Element;
