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