import { ComponentPropsWithoutRef } from 'react'; export interface IconProps extends ComponentPropsWithoutRef<"i"> { iconset?: string; spinning?: boolean; name: string; } export declare function Icon({ iconset, name, className, spinning, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;