import Path, { PathProps } from '../Path'; export declare class RectShape { r?: number | number[]; x: number; y: number; width: number; height: number; } export interface RectProps extends PathProps { shape?: Partial; } declare class Rect extends Path { shape: RectShape; constructor(opts?: RectProps); getDefaultShape(): RectShape; buildPath(ctx: CanvasRenderingContext2D, shape: RectShape): void; isZeroArea(): boolean; } export default Rect;