export type Theme = 'light' | 'dark' | 'system'; export declare function useTheme(): { theme: Readonly>; effectiveTheme: import("vue").ComputedRef<"light" | "dark">; isDark: import("vue").ComputedRef; setTheme: (newTheme: Theme) => void; toggle: () => void; }; //# sourceMappingURL=useTheme.d.ts.map