import { Ref } from 'vue'; type ColorTheme = 'dark' | 'light'; export declare function useColorTheme(): { value: Ref; toggleTheme: () => void; setTheme: (theme: ColorTheme) => void; }; export {};