import { CompleteThemeSettings } from '../../types.js'; /** * Component that displays a loading indicator. * * @param props - Loading indicator props. * @param props.themeSettings - Theme settings to use for the loading indicator. * @param props.onCancel - Function to call when cancel is clicked. * @returns A loading indicator with optional cancel. * * @deprecated Use LoadingOverlay instead. * * @sisenseInternal */ export declare const LoadingIndicator: ({ themeSettings, onCancel, }: { themeSettings?: CompleteThemeSettings | undefined; onCancel?: (() => void) | undefined; }) => import("react/jsx-runtime").JSX.Element;