import { ShapeClip } from '../shape'; import { Layer } from '../../layer'; import { Renderer } from '../../renderer'; import { PolygonClipAnimationOptions, PolygonClipProps } from './interfaces'; export declare class PolygonClip extends ShapeClip { readonly type = "POLYGON"; layer?: Layer; animations: PolygonClipAnimationOptions; sides: number; constructor(props?: PolygonClipProps); get name(): string; /** * Access to the html document that * will be rendered to the canvas */ render(renderer: Renderer): void; }