import type { SuspenseProps } from 'react'; export type Fallback = SuspenseProps['fallback']; export type LazySuspenseContextType = { fallback: Fallback; setFallback(fallback: Fallback): void; }; export type LazySuspenseProps = { children?: SuspenseProps['children']; fallback: Fallback; }; //# sourceMappingURL=types.d.ts.map