import { type ThemeId } from '@ottocode/themes'; type Theme = ThemeId; export declare function useTheme(options?: { enabled?: boolean; }): { theme: "otto-dark" | "otto-light" | "rose-pine" | "rose-pine-moon" | "rose-pine-dawn" | "ayu-dark" | "ayu-mirage" | "ayu-light" | "tokyo-night" | "catppuccin-mocha" | "nord" | "gruvbox" | "monokai" | "dracula" | "solarized-dark"; setTheme: (nextTheme: Theme) => void; toggleTheme: () => void; }; export type { Theme }; //# sourceMappingURL=useTheme.d.ts.map