import type { Entity } from "../../core/Entity"; import { Circle } from "./Circle"; declare type Props = { radius: number; color: string; }; export declare class Selected extends Circle { constructor(entity: Entity, props?: Partial); } export {};