/// import type { Color } from '@shopify/polaris-viz-core'; export interface ArcProps { radius: number; height: number; width: number; startAngle: number; endAngle: number; color: Color; cornerRadius: number; thickness: number; animationDelay?: number; index?: number; isAnimated: boolean; activeIndex?: number; } export declare function Arc({ animationDelay, radius, width, height, startAngle, endAngle, color, cornerRadius, thickness, index, isAnimated, activeIndex, }: ArcProps): JSX.Element; //# sourceMappingURL=Arc.d.ts.map