import { Goal } from "../goal"; import { Subst } from "../subst"; export declare class GoalQueue { subst: Subst; goals: Array; constructor(subst: Subst, goals: Array); step(): Array | null; }