import React from "react"; declare type ProgressBarProps = { children?: React.ReactNode; close?: React.ReactNode; percentage: number; color?: string; height?: string; }; declare function ProgressBar({ percentage, children, close, color, height, }: ProgressBarProps): JSX.Element; export default ProgressBar; //# sourceMappingURL=index.d.ts.map