import type { CSSProperty } from '../CSSProperty'; import type { DisplayObject } from '../../display-objects'; /** * @see /zh/docs/api/basic/display-object#clippath * @example const image = new Image({ style: { width: 200, height: 200, clipPath: new Circle({ style: { x: 100, // 处于被裁剪图形局部坐标系下 y: 100, r: 50, }, }), } }); */ export declare class CSSPropertyClipPath implements Partial> { calculator(name: string, oldClipPath: DisplayObject, newClipPath: DisplayObject, object: DisplayObject): DisplayObject; }