import { SvgIconType } from '../SvgIcon/svg-icon-type'; import { ImgHTMLAttributes, SVGAttributes } from 'react'; type SvgIconProps = SVGAttributes & { type: SvgIconType; }; type ImgIconProps = ImgHTMLAttributes; export declare function ItemIcon({ className, framed, ...props }: (SvgIconProps | ImgIconProps) & { framed?: boolean; }): import("react/jsx-runtime").JSX.Element | null; export {};