import * as React from 'react'; export declare type IconSize = 'sm' | 'md' | 'lg' | 'tool'; export interface IconProps { name: string; size?: IconSize; style?: React.CSSProperties; } export declare function Icon({ children, ...props }: React.PropsWithChildren): React.ReactElement> | null;