import type { FC, ReactNode, Ref, SVGProps } from 'react'; import { type VariantProps } from 'class-variance-authority'; declare const iconVariants: (props?: ({ size?: "inherit" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type SvgIconNativeProps = SVGProps; type SvgIconVariantProps = VariantProps; interface SvgIconBaseProps { title?: string; children?: ReactNode; ref?: Ref; } export type SvgIconSize = NonNullable; export type SvgIconProps = SvgIconNativeProps & SvgIconVariantProps & SvgIconBaseProps; export declare const SvgIcon: FC; export {};