interface ProgressProps { /** Value between 0 and 100 representing the progress percentage */ value: number; /** Whether to use the child element as the progress indicator */ asChild?: boolean; /** Maximum value of the progress bar */ max?: number; /** A function to get the accessible label text representing the current value in a human-readable format. If not provided, the value label will be read as the numeric value as a percentage of the max value. */ getValueLabel?: (value: number) => string; /** The class name of the progress bar. To customize the background color of the progress bar, use background utility classes. To customize the indicator color, use text color utility classes. */ className?: string; } declare const Progress: { ({ value, asChild, max, getValueLabel, className }: ProgressProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Progress }; export type { ProgressProps };