import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; declare const progressTrackStyles: import('../../style-engine').StylesDef<{ size: { sm: string; md: string; lg: string; }; color: Record<"primary" | "secondary" | "accent" | "muted" | "success" | "warning" | "danger" | "info" | "gradient", string>; orientation: { readonly horizontal: "flex-row"; readonly vertical: "flex-col"; }; direction: { readonly normal: ""; readonly reverse: "justify-end"; }; }>; type ProgressVariantProps = StyleProps; export interface ProgressProps extends Omit, 'color'>, ProgressVariantProps { value?: number; max?: number; indicatorClassName?: string; } export declare function ProgressBar({ value, max, indicatorClassName, size, color, orientation, direction, className, ...props }: ProgressProps): React.JSX.Element; export {};