import type { RoleSemantics, SurfaceTheme } from '@ankhorage/surface'; import type { ZoraBaseProps } from './base'; import type { ZoraControlSize } from './control'; import type { ZoraColor } from './theme'; export interface ProgressProps extends ZoraBaseProps { value: number; max?: number; color?: ZoraColor; size?: ZoraControlSize; } export interface ProgressRingProps extends ZoraBaseProps { value: number; max?: number; color?: ZoraColor; trackColor?: ZoraColor; size?: number; thickness?: number; centerValue?: string; centerLabel?: string; accessibilityLabel?: string; accessibilityValueText?: string; } export declare function resolveProgressRole(theme: SurfaceTheme, color: ZoraColor): RoleSemantics; //# sourceMappingURL=progress.d.ts.map