import type { SVGProps } from 'react';
export type SvgIconProps = {
    iconClass: string;
    className?: string;
} & SVGProps<SVGSVGElement>;
declare const SvgIcon: FC<SvgIconProps>;
export { SvgIcon };
