import { Size } from '../constants'; export type ProgressBarProps = { percentage: number; size?: Size | 'custom'; color?: string; backgroundColor?: string; topLeftLabel?: string; topRightLabel?: string; bottomLeftLabel?: string; bottomRightLabel?: string; buildinLabel?: string; isAnimation?: boolean; height?: React.CSSProperties['height']; }; declare function ProgressBar({ percentage, size, color, backgroundColor, topLeftLabel, topRightLabel, bottomLeftLabel, bottomRightLabel, buildinLabel, isAnimation, height, ...rest }: ProgressBarProps): import("react/jsx-runtime").JSX.Element; export { ProgressBar }; //# sourceMappingURL=ProgressBar.component.d.ts.map