import { default as React } from 'react'; export type ProgressCircularProps = React.HTMLAttributes & { min?: number; max?: number; value: number | null; size?: string | number; countdown?: boolean; thickness?: number; linecap?: 'round'; color?: string; trackColor?: string; margin?: React.CSSProperties['margin']; }; export declare const ProgressCircular: React.ForwardRefExoticComponent & { min?: number; max?: number; value: number | null; size?: string | number; countdown?: boolean; thickness?: number; linecap?: "round"; color?: string; trackColor?: string; margin?: React.CSSProperties["margin"]; } & React.RefAttributes>;