import { VariantProps } from 'tailwind-variants'; import { PropType } from 'vue'; import { iconTheme } from './icon'; export type IconVariants = VariantProps; export type Variant = 'stroke' | 'duotone' | 'solid' | 'twotone' | 'bulk' | 'stroke-sharp' | 'solid-sharp'; export declare const iconProps: { name: { type: PropType; default: string; }; icon: { type: PropType; default: string; }; variant: { type: PropType; default: string; }; size: { type: PropType<"xs" | "sm" | "md" | "lg" | "xl" | "2xl">; default: string; }; color: { type: PropType; default: string; }; };