export interface ProgressIndicatorProps { variant?: 'linear' | 'circular'; value?: number; wavy?: boolean; size?: number; } export declare function ProgressIndicator({ variant, value, wavy, size }: ProgressIndicatorProps): import("react/jsx-runtime").JSX.Element;