import { Env } from "../env"; import { Goal } from "../goal"; import { Mod } from "../mod"; import { Solution } from "../solution"; export declare class GoalQueue { solution: Solution; goals: Array; constructor(solution: Solution, goals: Array); step(mod: Mod, env: Env): Array | undefined; }