import { CautionIcon } from "./icons/caution.js"; import { ChevronDownIcon } from "./icons/chevron-down-icon.js"; import { DeleteIcon } from "./icons/delete-icon.js"; import { EditIcon } from "./icons/edit-icon.js"; import { LinkIcon } from "./icons/link-icon.js"; import { HistoryIcon } from "./icons/history.js"; import { AddIcon } from "./icons/add-icon.js"; declare const icons: { caution: typeof CautionIcon; chevronDown: typeof ChevronDownIcon; delete: typeof DeleteIcon; edit: typeof EditIcon; link: typeof LinkIcon; history: typeof HistoryIcon; add: typeof AddIcon; }; declare const sizes: { "2xs": number; xs: number; sm: number; md: number; lg: number; xl: number; "2xl": number; "3xl": number; "4xl": number; "5xl": number; "6xl": number; "7xl": number; "8xl": number; "9xl": number; }; export declare function Icon({ name, size, className, ...svgProps }: { name?: keyof typeof icons; size?: keyof typeof sizes; } & React.SVGProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=icon.d.ts.map