import { SVGAttributes } from 'react'; type IconFactoryProps = { height?: number; width?: number; color?: string; cursor?: string; }; export type IconProps = {} & IconFactoryProps; declare const useIcon: (content: SVGAttributes) => ({ height, width, color, ...rest }: IconFactoryProps) => import("react").ReactSVGElement; export default useIcon;