import { Sector, SectorShape } from 'zrender'; import { BaseShape } from '../types'; export type ISectorOptions = BaseShape; /** * 创建扇形 * @param options * @returns */ export declare function createSector(options?: ISectorOptions): Sector;