import React from 'react';
import type { MeshExchangeType } from '~/consts/mesh';
import type { FunSelectOption } from '../FunSelect/FunSelect';
interface FunSelectBrokerageProps {
    onSelect: (value: MeshExchangeType) => void;
    options: FunSelectOption<MeshExchangeType>[];
    selectedValue: FunSelectOption['value'];
}
export declare function FunSelectBrokerage({ onSelect, options, selectedValue, }: FunSelectBrokerageProps): React.JSX.Element;
export {};
