import { Arc, ArcShape } from 'zrender'; import { BaseShape } from '../types'; export type IArcOptions = BaseShape & { radius?: number; x?: number; y?: number; }; /** * 创建圆弧 * @param options * @returns */ export declare function createArc(options?: IArcOptions): Arc;