/** * ThemeUtils — Scope class for theme and title reactive atoms. * * Prefer `useUtils()` in app code (MatesUtils delegates here). * * @example * ```ts * const { themeAtom, titleAtom } = useUtils(); * themeAtom.setToDark(); * titleAtom.set("My App"); * ``` */ import type { AtomType } from "../Mutables/atom/atom"; import type { ThemeAtomType } from "../Mutables/Extended Atoms/themeAtom"; export declare class ThemeUtils { themeAtom: ThemeAtomType; titleAtom: AtomType; constructor(); } //# sourceMappingURL=ThemeUtils.d.ts.map