import { QuaternaryTypes } from '../utils'; import { CSSProperties } from 'react'; export interface LoadingIndicatorProps { width?: number; height?: number; variant: QuaternaryTypes; style?: CSSProperties; } export declare const LoadingIndicator: ({ width, height, variant, style, }: LoadingIndicatorProps) => import("react").JSX.Element;