import * as React from "react"; export interface IconProps { /** name of the prop */ name: string; /** color of the prop */ color?: string; /** style of the prop */ style?: React.CSSProperties; /** size of the prop */ size?: number; } export declare const Icon: ({ name, color, size, style }: IconProps) => JSX.Element | null; export default Icon;