import { type PropsWithChildren } from 'react'; import type { StoreApi } from 'zustand'; import type { UseBoundStoreWithEqualityFn } from 'zustand/traditional'; import type { SettingsState, SettingsStoreProviderProps } from './types.js'; type SettingsStore = UseBoundStoreWithEqualityFn>; export declare const SettingsStoreProvider: ({ children, config, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export declare function useSettingsStoreContext(): SettingsStore; export declare function useSettingsStore(selector: (state: SettingsState) => T): T; export {};