import React from 'react';
import { type BrokerageOption } from '../../consts/bluvo';
interface FunSelectBrokerageProps {
    isDisabled?: boolean;
    options: ReadonlyArray<BrokerageOption>;
    onSelect: (option: BrokerageOption) => void;
    selectedKey: string | undefined;
}
export declare function FunSelectBrokerage({ isDisabled, options, onSelect, selectedKey, }: FunSelectBrokerageProps): React.JSX.Element;
export {};
