import React from 'react';
import { type TextProps } from '../Text/Text';
export interface FunBrokerageItemProps {
    exchangeName: string;
    exchangeIcon: React.ReactNode;
    hasActiveConnection: boolean;
    badgeText?: string;
    disabled?: boolean;
    fontSize?: TextProps['size'];
    fontWeight?: TextProps['weight'];
}
export declare const FunBrokerageItem: ({ exchangeName, exchangeIcon, hasActiveConnection, badgeText, disabled, fontSize, fontWeight, }: FunBrokerageItemProps) => React.JSX.Element;
