import { FC } from 'react'; import { SWRConfiguration, FullConfiguration, ProviderConfiguration, Cache } from '../types'; export declare const SWRConfigContext: import("react").Context>; declare const SWRConfig: FC<{ value?: SWRConfiguration & Partial & { provider?: (cache: Readonly) => Cache; }; }>; export default SWRConfig;