import { type CSSProperties } from 'react'; export type SCircleProgressType = 'primary' | 'inverse' | 'error' | 'complete'; export interface SCircleProgressProps { /** 진행률 (0–100) */ value?: number; /** 색상 테마 */ type?: SCircleProgressType; /** 불확정(스피너) 모드 — value 무시 */ indeterminate?: boolean; /** 하단 레이블 */ label?: string; /** true면 퍼센트를 원 아래가 아닌 원 가운데에 표시 */ innerValue?: boolean; className?: string; style?: CSSProperties; } /** SCircleProgress — sd-circle-progress 포팅. determinate=진행률 arc, indeterminate=스피너. */ export declare const SCircleProgress: import("react").ForwardRefExoticComponent>;