import { ShapeBase } from './shape.base'; export declare class Circle extends ShapeBase { radius: number; fill: string; }