import type { ComponentPropsWithRef, ElementType } from 'react'; declare const SIZES: { large: number; small: number; }; export type ProgressCircularProperties = { /** If the Progress is Indeterminate Progress */ indeterminate?: boolean; /** Is Paused */ paused?: boolean; /** Width of the Circular Progress */ progressSize?: number | keyof typeof SIZES; /** Percent Complete */ value?: HTMLProgressElement['value']; } & Omit, ''>; /** * Circular indicator used to show the progress of a task or process. * @docs {@link https://design.visa.com/components/progress/?code_library=react | See Docs} * @related progress-label * @vgar TODO * @wcag TODO */ declare const ProgressCircular: { ({ className, children, indeterminate, paused, progressSize, style, value, ...remainingProps }: ProgressCircularProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ProgressCircular;