import { FetchContextType } from '../types'; /** * This is a wrapper around `Suspense`. It will render `fallback` during the first render and then leave the rendering to `Suspense`. If you are not using SSR, you should continue using the `Suspense` component. */ export declare function SSRSuspense({ fallback, children }: { fallback?: React.ReactNode; children?: React.ReactNode; }): React.JSX.Element; export declare function FetchConfig(props: FetchContextType): import("react/jsx-runtime").JSX.Element;