type Theme = "light" | "dark";
type Store = {
    theme: Theme;
};
type Action = {
    set: (theme: Theme) => void;
    toggle: () => void;
};
declare const useTheme: import('zustand').UseBoundStore<import('zustand').StoreApi<Store & Action>>;
export default useTheme;
