import { SettingsStoreProviderProps } from "./types.js"; import { JSX, PropsWithChildren } from "react"; //#region src/stores/settings/SettingsStore.d.ts declare const SettingsStoreProvider: ({ children, config }: PropsWithChildren) => JSX.Element; declare function useSettingsStoreContext(): any; //#endregion export { SettingsStoreProvider, useSettingsStoreContext }; //# sourceMappingURL=SettingsStore.d.ts.map