import { CompoundPath, CompoundPathShape } from 'zrender'; import { BaseShape } from '../types'; export type ICompoundPathOptions = BaseShape & { /** * 路径集合,默认不闭合 */ paths: number[][]; /** * 路径是否闭合 */ isClose?: number; }; /** * 创建复合路径 * @param options * @returns */ export declare function createCompoundPath(options?: ICompoundPathOptions): CompoundPath;