import type { ShapeType } from "microboard-temp"; import React from "react"; type Props = { iconName: ShapeType; width?: number | string; height?: number | string; style?: React.CSSProperties; }; export declare function ShapeIcon({ iconName, style, height, width, }: Props): React.ReactElement; export {};