1 | import * as React from 'react';
|
2 | /**
|
3 | * React.Suspense "as-is" replacement. Automatically "removed" during SSR and "patched" to work accordingly on the clientside
|
4 | *
|
5 | * @see {@link HydrationController} has to wrap entire application in order to provide required information
|
6 | */
|
7 | export declare const LazyBoundary: React.FC<{
|
8 | fallback: NonNullable<React.ReactNode> | null;
|
9 | }>;
|