import { FC, CSSProperties } from "react"; type Variant = "light" | "dark" | "grayscale"; type IconDefinition = { keywords?: string[]; svg: Record; }; type IconsMap = Record; declare const typedIconsData: IconsMap; export type IconName = keyof typeof typedIconsData; interface StackIconProps { name: IconName; variant?: Variant; className?: string; style?: CSSProperties; } declare const StackIcon: FC; export default StackIcon;