import { Ref } from 'vue'; export type ThemeType = 'dark' | 'light' | 'auto'; export type CurrentThemeType = 'dark' | 'light'; export interface ThemeContext { theme: Ref; currentTheme: Ref; } export default function useTheme(): void;