import type { Colors, ElProps } from '..'; export declare const ICON_SIZES: readonly ["auto", "xs", "sm", "md", "lg", "xl", "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x"]; export type IconSizes = typeof ICON_SIZES[number]; export declare const ICON_PACKS: readonly ["tabler", "mdi", "fa-solid", "la", "bx"]; export type IconPacks = typeof ICON_PACKS[number] | string; export interface IconProps extends Partial { color?: Colors; pack?: IconPacks; filled?: boolean; name?: string; size?: IconSizes; }