import { SVGProps } from 'react'; import { SvgIconType } from './svg-icon-type'; type CustomSvgIconProps = SVGProps; type SvgIconProps = Omit & { type: SvgIconType; }; export declare function SvgIcon({ type, ...props }: SvgIconProps): import("react/jsx-runtime").JSX.Element; export {};