import { CSSProperties } from 'react'; import { IconsNames } from './iconNames'; interface IconProps { name?: IconsNames; className?: string; style?: CSSProperties; size?: 'xsmall' | 'small' | 'medium' | 'large' | number; color?: string | string[]; onClick?: (event: React.MouseEvent) => void; } declare const Icon: ({ name, color, size, onClick, style, ...rest }: IconProps) => import("react/jsx-runtime").JSX.Element; export { Icon }; export type { IconProps, IconsNames };