/// interface LoadingErrorViewProps { headingTitle: string | JSX.Element; bodyTitle: string | JSX.Element; buttonTitle: string | JSX.Element; buttonAction: () => any; shouldHideButton: boolean; } export declare function LoadingErrorView(props: LoadingErrorViewProps): JSX.Element; export {};