import * as Progress from '@radix-ui/react-progress'; import * as React from 'react'; declare const StyledProgressBar: React.ForwardRefExoticComponent, "size" | "theme"> & { size?: ("sm" | "md" | Partial>) | undefined; theme?: ("primary" | "neutral" | "success" | "warning" | "danger" | "info" | Partial>) | undefined; } & { as?: React.ElementType; }>; type ProgressBarProps = React.ComponentPropsWithoutRef & ({ id: string; 'aria-label'?: string; } | { 'aria-label': string; id?: string; }); export declare const ProgressBar: { ({ value, max, size, theme, ...remainingProps }: ProgressBarProps): React.JSX.Element; displayName: string; }; export {};