1 | import * as React from 'react';
|
2 | import { CircularProgressbarDefaultProps, CircularProgressbarProps } from './types';
|
3 | declare class CircularProgressbar extends React.Component<CircularProgressbarProps> {
|
4 | static defaultProps: CircularProgressbarDefaultProps;
|
5 | getBackgroundPadding(): number;
|
6 | getPathRadius(): number;
|
7 | getPathRatio(): number;
|
8 | render(): JSX.Element;
|
9 | }
|
10 | export default CircularProgressbar;
|