import type { SVGProps } from 'react'; interface IconProps extends Omit, 'fill' | 'stroke'> { /** * @default "currentColor" */ fill?: (string & {}); stroke?: (string & {}); } declare const ForwardRef: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default ForwardRef;