/** * @fileoverview clip * @author dengfuping_develop@163.com */ declare class Clip { type: string; id: string; el: SVGClipPathElement; cfg: { [key: string]: any; }; constructor(cfg: any); match(): boolean; remove(): void; } export default Clip;