import { Context } from "../game-interfaces"; import { Entity } from "../../entity"; import { StateEntry } from "../../interfaces"; export interface GroundEntry extends StateEntry { type: "Ground"; } export declare class Ground extends Entity { constructor(o: any); private loadGround; destructor(): Promise; }