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