/**
 * Web ProgressIndicator Component
 *
 */
import { ProgressIndicatorAllProps } from './types';
export type DeprecatedProgressIndicatorProps = {
    /** @deprecated use `noAnimation`. */
    no_animation?: boolean;
    /** @deprecated use `labelDirection`. */
    label_direction?: string;
    /** @deprecated use `showDefaultLabel`. */
    show_label?: boolean;
    /**  @deprecated use `onComplete`. */
    on_complete?: (...args: any[]) => any;
};
declare function ProgressIndicator(props: ProgressIndicatorAllProps & DeprecatedProgressIndicatorProps): import("react/jsx-runtime").JSX.Element;
declare namespace ProgressIndicator {
    var displayName: string;
    var _supportsSpacingProps: boolean;
}
export default ProgressIndicator;
