import { ShapeBase } from './shape.base'; export declare class Rect extends ShapeBase { width: number; height: number; fill: string; }