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