import { t as ScalarStrings } from "../../strings-scalar-C_B3azW6.js"; import { r as ProgressProps } from "../../index-BWSAbAln.js"; import { ReactNode } from "react"; //#region src/charts/progress-ring/index.d.ts interface ProgressRingProps extends Pick { /** Countdown mode: render the REMAINING fraction as a shrinking wedge. */ sweep?: boolean | undefined; /** Ring thickness in viewBox units (geometry-affecting, so a prop). */ weight?: number | undefined; /** `"percent"` centers the figure (≥ 20 px rendered size guidance in docs). */ label?: "none" | "percent" | undefined; size?: number | undefined; color?: string | undefined; strings?: ScalarStrings | undefined; } declare function ProgressRing(props: ProgressRingProps): ReactNode; //#endregion export { ProgressRing, ProgressRingProps };