import * as react_jsx_runtime from 'react/jsx-runtime'; import { PropsWithChildren } from 'react'; import { Cache } from './Cache.js'; import './types.js'; type CacheProviderProps = PropsWithChildren<{ cache: Cache; }>; /** * @experimental This is experimental feature. */ declare function CacheProvider({ cache, children }: CacheProviderProps): react_jsx_runtime.JSX.Element; export { CacheProvider };