import React, { ReactElement } from 'react'; interface IIconProps { icon: ReactElement | JSX.Element; size?: 's' | 'm' | 'l' | 'xl'; color?: string; disabled?: boolean; className?: string; } declare const Icon: React.FC; export { IIconProps, Icon };