/** * `@vueuse/core` color-mode integration * @memo We not use `@nuxtjs/color-mode` */ export declare const useColorMode: () => { forced: boolean; modeKeysList?: undefined; colorModeInitialValue?: undefined; colorModeTypeLight?: undefined; preference?: undefined; readonly value?: undefined; } | { modeKeysList: ("auto" | "edge-dark" | "edge-light" | "dark" | "light")[]; colorModeInitialValue: string; colorModeTypeLight: string; preference: string; readonly value: string; forced: boolean; };