type Props = { percent: number; radius: number; strokeWidth?: number; title?: string; color?: string; backgroundColor?: string; children?: JSX.Element; }; /** * * * @example * * text content */ declare function CircularProgressBar({ percent, radius, strokeWidth, title, color, backgroundColor, children, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export { CircularProgressBar }; //# sourceMappingURL=CircularProgressBar.component.d.ts.map