import { ComponentType } from 'react'; type SvgContentComponentProps = { startColor: string; stopColor: string; id: string; }; export type IconProps = { className?: string; color?: string; size?: number; }; export declare const templateIconHoc: (SvgContentComponent: ComponentType) => ({ className, color, size }: IconProps) => JSX.Element; export {}; //# sourceMappingURL=utils.d.ts.map