import { Goal } from "../goal"; import { GoalQueue } from "../goal-queue"; import { Table } from "../table"; import { Logical } from "../value"; import { Subst } from "../subst"; export declare class Relation extends Goal { table: Table; data: Logical; constructor(opts: { table: Table; data: Logical; }); evaluate(subst: Subst): Array; }