import * as React from "react"; import { Progress as ProgressPrimitive } from "radix-ui"; import { type VariantProps } from "class-variance-authority"; declare const progressIndicatorVariants: (props?: ({ variant?: "error" | "default" | "success" | "warning" | "neutral" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ProgressProps extends React.ComponentProps, VariantProps { } declare function Progress({ className, value, variant, ...props }: ProgressProps): import("react/jsx-runtime").JSX.Element; export { Progress }; //# sourceMappingURL=progress.d.ts.map