/// <reference types="react" />
export interface LoadingModalState {
    message: React.ReactNode;
    title: string;
    dataTestId: string;
}
export declare const LoadingModal: import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLDivElement>>;
