import { type PropsWithChildren, type JSX } from 'react'; import type { TreeMapState } from '../types/state.js'; interface StoreProviderProps { value?: TreeMapState; } export declare const StoreProvider: ({ value, children, }: PropsWithChildren) => JSX.Element; export {};