import { SVGProps } from 'react';
import { MarginType } from '../../../types/styleType';
import { HUGE_ICONS_PATH } from './HugeIconPath';
export interface IHugeIconsProps extends Omit<SVGProps<SVGSVGElement>, 'fill'>, MarginType {
    name: keyof typeof HUGE_ICONS_PATH;
    rotate?: number;
    size?: number;
}
declare const HugeIcons: import("react").ForwardRefExoticComponent<Omit<IHugeIconsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
export default HugeIcons;
