import { FC } from 'react';
import { SvgProps } from '@/components/base/types';
export interface WithIconProps extends SvgProps {
strokeWidth?: number;
viewBox?: string;
color?: string;
}
export declare type WithIcon = (Component: FC<WithIconProps>) => FC<WithIconProps>;