/** shared constants -- keep in separate files for better tree-shaking and dependency injection */ export declare const DEFAULT_ID = "nthul"; export type ColorSchemePreference = "system" | "dark" | "light"; export interface ThemeState { colorSchemePreference: ColorSchemePreference; systemColorScheme: "dark" | "light"; theme: string; } export declare const DEFAULT_THEME_STATE: { colorSchemePreference: ColorSchemePreference; systemColorScheme: "dark" | "light"; theme: string; }; //# sourceMappingURL=constants.d.ts.map