import { default as React } from 'react';
export interface ProgressIndicatorIndeterminateProps extends React.ComponentProps<"div"> {
    type?: "linear" | "circular";
    size?: "small" | "medium" | "large";
    color?: "primary" | "subtle";
    animationProgress?: number;
}
export declare const ProgressIndicatorIndeterminate: {
    ({ type, size, color, animationProgress, className, style, ...props }: ProgressIndicatorIndeterminateProps): React.JSX.Element;
    displayName: string;
};
