import React from 'react'; import type { ErrorViewProps } from '../types'; import type { AsyncBoundaryComponent } from './types'; export declare const withAsyncBoundary: (Component: React.ComponentType, LoadingView: React.ComponentType>, ErrorView: React.ComponentType>) => AsyncBoundaryComponent;