import * as react_jsx_runtime from 'react/jsx-runtime'; import { PropsWithChildren } from 'react'; import { PromiseCache } from './PromiseCache.cjs'; import './types.cjs'; type PromiseCacheProviderProps = PropsWithChildren<{ cache: PromiseCache; }>; /** * @experimental This is experimental feature. */ declare const PromiseCacheProvider: ({ cache, children }: PromiseCacheProviderProps) => react_jsx_runtime.JSX.Element; export { PromiseCacheProvider };