/** * Every product theme this library ships (folders under * `src/styles/themes/`). A closed set on purpose, mirroring `ColorScheme` * (`'light' | 'dark' | 'system'`) for the color-scheme axis: the library * owns which themes exist and what they're called, so consuming apps never * need to invent their own labels or types for them — just pass ids. * TypeScript-only enforcement; add an id here (and to `THEME_LABELS`) * whenever a new theme folder is added. */ export declare const THEME_IDS: readonly ["dbc", "filmstriben", "valentines"]; export type ThemeId = (typeof THEME_IDS)[number]; export declare const THEME_LABELS: Record;