/** * Status bar localization — adapts date and Mac menu bar items * to match the capture language. */ import type { StatusBarConfig } from './status-bar.js'; /** * Localize a StatusBarConfig for the given language. * Returns a new config with date and menuBarItems adapted. * * If date/menuBarItems are not set, English defaults are injected first * so the localization always has values to translate — otherwise the * renderer's own English defaults would bypass localization. */ export declare function localizeStatusBar(config: StatusBarConfig | undefined, lang: string): StatusBarConfig;