/** * Unified SVG icon set for RK Word Editor. * * All icons are 16×16 line icons in the spirit of Lucide / Tabler — single * stroke colour (`currentColor`), 1.5 stroke width, no fills. Pass them as * `innerHTML` of buttons; size and color are controlled by the parent button. */ export declare const Icons: { fileNew: string; fileOpen: string; save: string; download: string; upload: string; print: string; pdf: string; docx: string; undo: string; redo: string; cut: string; copy: string; paste: string; clear: string; formatPainter: string; eraser: string; bold: string; italic: string; underline: string; strike: string; superscript: string; subscript: string; code: string; link: string; unlink: string; highlight: string; color: string; fontColor: string; fillColor: string; alignLeft: string; alignCenter: string; alignRight: string; alignJustify: string; bulletList: string; orderedList: string; nepaliList: string; taskList: string; indentRight: string; indentLeft: string; heading: string; h1: string; h2: string; h3: string; paragraph: string; blockquote: string; horizontalRule: string; image: string; table: string; math: string; citation: string; footnote: string; pageBreak: string; pageNumber: string; toc: string; template: string; emoji: string; textbox: string; pageSize: string; margins: string; orientation: string; zoomIn: string; zoomOut: string; eye: string; eyeOff: string; sun: string; moon: string; panelLeft: string; panelRight: string; search: string; replace: string; settings: string; info: string; keyboard: string; github: string; chevronDown: string; chevronUp: string; chevronRight: string; chevronLeft: string; close: string; check: string; plus: string; minus: string; moreHorizontal: string; track: string; comment: string; drag: string; }; export type IconName = keyof typeof Icons; export declare function icon(name: IconName): string;