import '../../styles.scss'; import * as React from 'react'; import { PropsWithChildren } from 'react'; export declare enum OverlayType { None = "none", Dark = "dark", Light = "light" } interface ILoadingIndicatorProps { active: boolean; overlayStyle?: React.CSSProperties; overlayText?: string; overlayTextClassName?: string; overlayType?: OverlayType; showSpinner?: boolean; size?: number; style?: React.CSSProperties; thickness?: number; } declare const LoadingIndicatorComponent: React.FC; export default LoadingIndicatorComponent;