export type ThemeSelectOptions = 'light' | 'dark' | 'auto'; export type StoredThemeOptions = ThemeSelectOptions | null; export type UseThemeResult = [ ThemeSelectOptions, (selectedTheme: ThemeSelectOptions) => void ]; export declare const useTheme: () => UseThemeResult; export default useTheme;