import type { PaymentMethodVirtualBankIncompleteInfo } from '../../../domains/paymentMethods';
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepInfo } from '../../../modals/CheckoutModal/stepTransition';
export type BridgeCustomerNext = {
    hasError?: false;
    kycLink: string;
} | {
    hasError: true;
    errorCode: string;
};
export type BridgeCustomerState = CheckoutModalCommonState & {
    paymentMethodInfo: PaymentMethodVirtualBankIncompleteInfo;
};
export declare const BridgeCustomerInfo: ModalStepInfo<FunCheckoutStep.BRIDGE_CUSTOMER>;
