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