import { Color } from '@ionic/core'; /** * Metadata for the progress ring component. */ export interface ProgressRingMetadata { /** Progress value (0-100) */ value: number; /** Size in pixels */ size?: number; /** Stroke width */ strokeWidth?: number; /** Progress color */ color?: Color; /** Track (background) color */ trackColor?: Color; /** Show percentage value */ showValue?: boolean; /** Custom label (overrides percentage) */ label?: string; /** Animate progress changes */ animated?: boolean; /** Unique token identifier */ token?: string; }