1 | import * as React from 'react';
|
2 | import { CircularProgressbarWrapperProps } from './types';
|
3 | declare type CircularProgressbarWithChildrenProps = CircularProgressbarWrapperProps & {
|
4 | children?: React.ReactNode;
|
5 | };
|
6 | declare function CircularProgressbarWithChildren(props: CircularProgressbarWithChildrenProps): JSX.Element;
|
7 | export default CircularProgressbarWithChildren;
|