export declare const iconMap: Record; export type IconName = keyof typeof iconMap; export type PlaceholderSize = "xl" | "large" | "medium" | "regular" | "small" | "xs" | "xxs" | "tiny"; export type AvatarSize = "xl" | "large" | "medium" | "small" | "xs" | "xxs"; export interface IconComponentProps { type: "icon" | "placeholder" | "avatar"; className?: string; iconName?: IconName; size?: number; theme?: "light" | "dark"; placeholderSize?: PlaceholderSize; filled?: boolean; avatarSize?: AvatarSize; initials?: string; } export declare const sizeMapping: Record;