import { ReactNode } from "react"; interface DSProgressBarProps { value?: number; label?: ReactNode; /** * To use colors from theme, follow format -> $name-$value (e.g. purple-100). * Regular color names and hash values are also supported. * @default orange-100 */ fillColor?: string; /** * To use colors from theme, follow format -> $name-$value (e.g. purple-100). * Regular color names and hash values are also supported. * @default white */ backgroundColor?: string; } export declare const DSProgressBar: ({ value, label, fillColor, backgroundColor }: DSProgressBarProps) => JSX.Element; export {};