import { type IOps, type IStream } from '../../stream/index.js'; import type { I$Node, INode } from '../../ui-renderer-dom/index.js'; export interface I$Icon { size?: string; width?: string; height?: string; viewBox?: string; fill?: string | IStream; $content: I$Node; svgOps?: IOps>; } export declare const $icon: ({ $content, size, width, height, viewBox, fill, svgOps }: I$Icon) => I$Node;