import * as React from "react"; export interface LoadingOverlayProps { clientId?: string; /** * It enforces keeping the loading state visible, * which is helpful for external loading states. */ loading?: boolean; showOpenInCodeSandbox: boolean; } export declare const LoadingOverlay: React.FC>;