import { ReactNode } from 'react';
import { InferComponentProps } from './types.js';
declare const GoldenCenter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare type LoadingViewProps = {
    className?: string;
    message?: ReactNode;
    illustration?: string;
} & InferComponentProps<typeof GoldenCenter>;
declare const LoadingView: {
    ({ className, message, illustration, ...props }: LoadingViewProps): JSX.Element;
    displayName: string;
};
export default LoadingView;
