UNPKG

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