export declare const modalsEn: { readonly renderer: { readonly title: 'Renderer Settings'; readonly reset: 'Reset'; readonly resetTitle: 'Reset all to defaults'; readonly closeTitle: 'Close'; readonly room: 'Room'; readonly lines: 'Lines'; readonly background: 'Background'; readonly shape: 'Shape'; readonly size: 'Size'; readonly style: 'Style'; readonly width: 'Width'; readonly color: 'Color'; readonly areaName: 'Area name'; readonly showOnMap: 'Show on map'; readonly rectangle: 'Rectangle'; readonly rounded: 'Rounded'; readonly circle: 'Circle'; readonly borders: 'Borders'; readonly frame: 'Frame'; readonly colored: 'Colored'; readonly emboss: 'Emboss'; readonly hiddenRooms: 'Hidden rooms'; readonly hidden_dashed: 'Dashed'; readonly hidden_faded: 'Faded'; readonly hidden_show: 'Show'; readonly hidden_hide: 'Hide'; readonly bigMaps: 'Big maps'; readonly lod: 'Level of detail'; readonly lodEnabled: 'Reduce detail on dense levels'; readonly lodRoomBudget: 'Room budget'; readonly lodExitBudget: 'Exit budget'; readonly lodNote: 'Levels with more rooms than the budget are drawn with exit lines hidden, then as a flat overview, while zoomed out. Zooming in always restores full detail. Pointer tools need full detail, so the overview is view-only.'; }; readonly urlLoad: { readonly title: 'Load map from URL'; readonly placeholder: 'https://example.com/map.dat'; readonly loading: 'Loading…'; readonly load: 'Load'; readonly corsNote: 'The server must allow cross-origin requests (CORS). If loading fails, download the file and use "Load .dat" instead.'; }; readonly diff: { readonly title: 'Changes this session'; readonly sessionStart: 'Session start'; readonly now: 'Now'; readonly computing: 'Computing diff…'; readonly noChanges: 'No changes this session'; readonly highlights: 'Highlight changes'; readonly area: 'Area'; readonly level: 'Level'; readonly rooms: 'Rooms'; readonly labels: 'Labels'; readonly areas: 'Areas'; readonly label: 'Label'; readonly mapProps: 'Map properties'; readonly dragHint: 'Drag to resize'; }; }; export type ModalsLocale = { [K in keyof typeof modalsEn]: { [K2 in keyof typeof modalsEn[K]]: string; }; };