import type { IconNode } from "./registry.js"; /** Render icon data → an `` string. */ export declare function iconSVG(node: IconNode): string; /** * SSR render of `` with the svg inline so it shows before hydration. `label` makes it an * announced image; otherwise it's decorative (aria-hidden). Unknown names render an empty icon. */ export declare function renderKoraIcon(name: string, opts?: { size?: string | number; label?: string; }): string; //# sourceMappingURL=render.d.ts.map