/** * Icon mapping from old eUI icon names to new ones. * Ported from csdr-engine/migrate/index.js replaceIcons. */ export declare const ICON_MAP: { oldIcon: string; newIcon: string; }[]; /** * Replaces old icon names with new ones in a single line. * Only replaces in quoted strings, skipping import lines and element tags. * Returns true if the line was modified. */ export declare function replaceIcons(lines: string[], index: number): boolean;