import { PropsWithChildren } from 'react'; import { Store } from './stores/engine'; declare type Props = PropsWithChildren<{ value: Store; }>; export declare function EngineStoreContextProvider({ children, value }: Props): JSX.Element; export declare function useEngineStoreContext(): Store; export {};