import React, { CSSProperties } from 'react'; import { ViewProps } from './View/types'; export declare type IconProps = ViewProps & { size?: number; name?: string; tooltip?: string; tooltipProps?: Object; svg?: string; ignoreColor?: boolean; }; export declare const findIconName: (name: string) => string; export declare const Icon: React.MemoExoticComponent<(rawProps: IconProps) => JSX.Element>; export declare const PlainIcon: { (iconProps: Omit & { style: CSSProperties; }): any; acceptsProps: { hover: boolean; icon: boolean; }; defaultProps: { size: number; }; }; export declare function getSvgIcon(size: number, name: string): Promise; //# sourceMappingURL=Icon.d.ts.map