/** * ⚠ ATTENTION: SHARED CONFIGURATION VALUES * * These values MUST match the library defaults in: * - projects/ngx-theme-stack/src/lib/types.ts → DEFAULT_THEMES * - projects/ngx-theme-stack/src/lib/config/index.ts → DEFAULT_NG_CONFIG * * Schematics run in Node.js (CommonJS) and cannot import from the library (ESM), * so the values are intentionally duplicated. Change all three at the same time. */ export declare const DEFAULT_THEMES: readonly ["system", "light", "dark"]; export declare const DEFAULTS: { readonly defaultTheme: "system"; readonly storageKey: "ngx-theme-stack"; readonly mode: "class"; readonly strategy: "critters"; readonly themes: readonly ["system", "light", "dark"]; };