import * as React from 'react';
import { KeyValue } from '../../../utils/functions/sqlFunctions';
declare type IconProps = {
    type: string;
    iconOptions?: KeyValue;
    value?: string;
    isHeader?: boolean;
    cssClass?: string;
};
declare const Icon: React.FunctionComponent<IconProps>;
export default Icon;
