export declare const themeLocalization: {
    /** @remarks `"Appearance"` */
    appearance: string;
    /** @remarks `"Theme"` */
    theme: string;
    /** @remarks `"System"` */
    system: string;
    /** @remarks `"Light"` */
    light: string;
    /** @remarks `"Dark"` */
    dark: string;
};
export type ThemeLocalization = typeof themeLocalization;
