import { Shape, ShapeConfig } from '../Shape'; import { GetSet } from '../types'; export interface WedgeConfig extends ShapeConfig { angle: number; radius: number; clockwise?: boolean; } export declare class Wedge extends Shape { _sceneFunc(context: any): void; getWidth(): number; getHeight(): number; setWidth(width: any): void; setHeight(height: any): void; radius: GetSet; angle: GetSet; clockwise: GetSet; }