export interface RenderIconOptions { /** SVG width/height, e.g. '1rem'. Falls back to 1.5rem like lit-icon's svg. */ size?: string; isActive?: boolean; disabled?: boolean; aiIcon?: boolean; /** Extra class(es) added alongside the baseline `rotated` class. */ class?: string; /** Extra inline style appended after the baseline styles. */ style?: string; } export declare function renderIcon(icon?: string, options?: RenderIconOptions): import("lit-html").TemplateResult<1>;