export default LoadingView;
declare function LoadingView({ className, message, illustration, children, ...props }: {
    [x: string]: any;
    className: any;
    message?: null | undefined;
    illustration: any;
    children: any;
}): JSX.Element;
declare namespace LoadingView {
    const displayName: string;
}
