import type { SvgIconProps as BaseSvgIconProps } from "@vertigis/react-ui/icons/SvgIcon"; import type { FC } from "react"; /** * Properties for the `SvgIcon` component. */ export interface SvgIconProps extends Omit { } declare const SvgIcon: FC; export default SvgIcon;