export declare enum ThemeMode { 'light' = "light", 'dark' = "dark" } /** * Interface for legacy settings format */ export interface LegacySettings { theme: string; mode: string; } /** * Internal application settings model representing configurations that define the behavior and appearance of the * application. */ export declare class ApplicationSettings { /** * The theme of the application. */ theme: string; /** * The theme mode of the application (e.g., light or dark). */ themeMode: ThemeMode; constructor(data?: Partial); toString(): string; }