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