import { Shape, ShapeConfig } from '../Shape'; import { GetSet } from '../types'; export interface RectConfig extends ShapeConfig { cornerRadius?: number | number[]; } export declare class Rect extends Shape { _sceneFunc(context: any): void; cornerRadius: GetSet; }