import { ReactNode } from 'react'; import { InferComponentProps } from './types.js'; declare const GoldenCenter: import("react").ComponentType, HTMLDivElement>>; type LoadingViewProps = { className?: string; message?: ReactNode; illustration?: string; } & InferComponentProps; /** # LoadingView This can be used to add a generic loading view with some basic layout styles. ``` ``` */ export declare const LoadingView: { ({ className, message, illustration, ...props }: LoadingViewProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};