import { ComponentType } from 'react';
export type IconOptions = Record<string, string | ComponentType<any>>;
export type IconProps = {
    type: string;
    iconOptions?: IconOptions;
    value?: string;
    isHeader?: boolean;
    cssClass?: string;
};
declare function Icon({ type, value, iconOptions, cssClass }: IconProps): import("react/jsx-runtime").JSX.Element;
export default Icon;
//# sourceMappingURL=Icon.d.ts.map