import * as React from "react"; import * as ProgressPrimitive from "@radix-ui/react-progress"; import { type VariantProps } from "class-variance-authority"; declare const progressBarVariants: (props?: ({ mood?: "default" | "neutral" | "success" | "warning" | "danger" | null | undefined; size?: "default" | "sm" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const progressBarIndicatorVariants: (props?: ({ mood?: "default" | "neutral" | "success" | "warning" | "danger" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ProgressProps extends React.ComponentProps, VariantProps, VariantProps { /** Array of colors to create gradient based on progress value */ colors?: string[]; } export declare const Progress: React.FC; export {}; //# sourceMappingURL=progress.d.ts.map