import { type PropsWithChildren } from "react";
import { type PreferencesStore } from "./store";
export declare function PreferencesProvider({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
export declare function usePreferences<T>(selector: (state: PreferencesStore) => T): T;
