import { t as ThemeFamily } from "./theme-tokens-IjR_iAF6.cjs"; import { CSSProperties } from "react"; //#region src/react/module-theme.d.ts /** * Per-module theme override: a built-in family name (rides on `data-theme`, * resolved by the generated `cal-themes` CSS) or a `createTheme` token object * (applied as inline `--c-*` vars, so it needs no generated stylesheet). * * Same union as the root `Calendar theme` prop — a module can therefore be * handed the very object the root uses, or a different one to stand out. */ type ModuleTheme = string | ThemeFamily; //#endregion export { type ModuleTheme as t };