import * as React from 'react';
export interface IAdaptableLoadingScreenProps {
    showLoadingScreen: boolean;
    loadingScreenDelay?: number;
    loadingScreenTitle?: string;
    loadingScreenText?: string;
    onClose?: () => {};
}
export declare function AdaptableLoadingScreen(props: IAdaptableLoadingScreenProps): React.JSX.Element;
