import type { CSSProperties, ReactNode } from 'react'; import type { PROGRESS_BAR_SENTIMENTS } from './constants'; type ProgressBarProps = { sentiment?: (typeof PROGRESS_BAR_SENTIMENTS)[number]; value?: number; showProgress?: boolean; prefix?: ReactNode; suffix?: ReactNode; max?: number; label?: string; labelDescription?: ReactNode; direction?: 'column' | 'row'; /** Put ProgressBar in a loading state */ progress?: boolean; className?: string; 'data-testid'?: string; 'aria-labelledby'?: string; 'aria-label'?: string; style?: CSSProperties; }; export declare function ProgressBar({ progress, value, sentiment, className, 'data-testid': dataTestId, showProgress, prefix, suffix, max, label, labelDescription, direction, 'aria-labelledby': ariaLabelledBy, 'aria-label': ariaLabel, style, }: ProgressBarProps): import("react").JSX.Element; export declare namespace ProgressBar { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map