import type { HTMLAttributes } from 'react';
import React from 'react';
interface Props extends HTMLAttributes {
className?: string;
height?: number;
/**
* 0 ≤ progress ≤ 1
*/
progress?: number;
width?: number;
}
export declare function LoadingIndicator({ className, height, progress, width, ...attributes }: Props): React.JSX.Element;
export {};