import { FC, SuspenseProps } from 'react';
/**
* A custom `Suspense` component that extends React's {@link React.Suspense Suspense} to manage loading and error handling across multiple components.
* @example
* ```tsx
* Loading...}>
*
*
* ```
*/
declare const Suspense: FC;
export = Suspense;