import { Sprite } from "../Sprite"; import type { Obstruction } from "./units/Obstruction"; export declare class Blueprint extends Sprite { static buildTime: number; constructor({ obstruction, ...props }: { obstruction: typeof Obstruction; x: number; y: number; }); }