import { PropsWithChildren } from 'react'; import Color from '../constants/Color'; export type ProgressBarProps = { width?: string; height?: string; padding?: string; progressPercent: number; color?: Color; }; export declare function BCProgressBar({ progressPercent, color, ...props }: PropsWithChildren): import("@emotion/react/jsx-runtime").JSX.Element;