import * as React from 'react'; import {PropsWithChildren} from "react"; export interface CircularProgressBarProps { error?: boolean; errorLabel?: string; errorMessage?: string; light?: boolean; showProgressIndication?: boolean; label?: string; size?: CircularProgressBarSize; value?: number | string; dataHook?: string; } export default class CircularProgressBar extends React.PureComponent> {} export type CircularProgressBarSize = 'small' | 'medium' | 'large';