import { Goal } from "../goal"; import { GoalQueue } from "../goal-queue"; import { Subst } from "../subst"; export declare class Or extends Goal { goals: Array; constructor(goals: Array); static create(...goals: Array): Or; evaluate(subst: Subst): Array; }