import React from 'react';
import { type MeshExchangeType } from '~/consts/mesh';
import { type PaymentMethodBrokerageInfo } from '../../domains/paymentMethods';
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from './stepTransition';
export type ConnectExchangeState = CheckoutModalCommonState & {
    brokerType: MeshExchangeType;
};
export type ConnectExchangeNext = {
    paymentMethodInfo: PaymentMethodBrokerageInfo;
};
export declare const ConnectExchangeInfo: ModalStepInfo<FunCheckoutStep.CONNECT_EXCHANGE>;
export declare function ConnectExchange({ modalState, onNext, setModalState, }: ModalStepComponentProps<FunCheckoutStep.CONNECT_EXCHANGE>): React.JSX.Element;
