import { ForwardRefExoticComponent, RefAttributes } from 'react'; import { Progress as ProgressPrimitive } from '@base-ui/react/progress'; import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; interface ProgressTrackVariantProps { size?: 'default' | 'sm' | null; } declare const progressTrackVariants: (props?: (ProgressTrackVariantProps & ClassProp) | undefined) => string; type ProgressProps = ProgressPrimitive.Root.Props & VariantProps & { max?: number; }; declare const Progress: ForwardRefExoticComponent & RefAttributes>; export { Progress };