import * as React from 'react'; import { AdaptableElementIcon, AdaptableCustomIcon, AdaptableIcon, AdaptableSystemIcon } from '../../AdaptableState/Common/AdaptableIcon'; export interface IconComponentProps { icon: AdaptableIcon; iconClassName?: string; } export declare const IconComponent: (props: IconComponentProps) => React.JSX.Element; export declare const isAdaptableSystemIcon: (icon: unknown) => icon is AdaptableSystemIcon; export declare const isAdaptableCustomIcon: (icon: unknown) => icon is AdaptableCustomIcon; export declare const isAdaptableElementIcon: (icon: unknown) => icon is AdaptableElementIcon; export declare const isAdaptableIcon: (icon: unknown) => icon is AdaptableIcon;