import * as React from 'react'; import * as ProgressPrimitive from '@radix-ui/react-progress'; import { VariantProps } from 'class-variance-authority'; declare const colorBase: (props?: ({ color?: "black" | "green" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; type ColorProgressBase = VariantProps; declare const ProgressDot: React.ForwardRefExoticComponent, "ref"> & { /** * Number dots * @default: 2 * */ scale?: number | undefined; itemProps?: React.HTMLAttributes | undefined; } & React.RefAttributes>; declare const Progress: React.ForwardRefExoticComponent, "ref"> & ColorProgressBase & { indicatorProps?: ProgressPrimitive.ProgressIndicatorProps | undefined; /** * If only 1 color when value == 100 * */ isForceColor?: boolean | undefined; } & React.RefAttributes>; export { ProgressDot, Progress };