export type Theme = "light" | "dark" | "system";
interface UseThemeResult {
    theme: Theme;
    resolvedTheme: "light" | "dark";
    setTheme: (theme: Theme) => void;
    toggleTheme: () => void;
}
export declare function useTheme(): UseThemeResult;
export {};
