import { PropsWithChildren } from 'react'; import { SWRConfiguration } from 'swr'; export { unstable_serialize as serializeKey } from 'swr'; export type DataFetchingProviderProps = { /** * Pass any configuration to the SWR library. Globally. * * These settings can be overridden at the hook level. */ swrConfig: SWRConfiguration; data: SWRConfiguration['fallback']; children: React.ReactNode; }; export declare const DataFetchingProvider: ({ swrConfig, data, children, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;