import { VarFinder } from "../value"; import { Goal } from "../goal"; import { Schema } from "@xieyuheng/ty"; export declare function find(goals: (v: VarFinder) => Array, varSchemas: { [P in keyof T]: Schema; }, opts?: { limit?: number; }): Array; export declare function assertFindResults(opts: { goals: (v: VarFinder) => Array; projections: { [P in keyof T]: Schema; }; results: Array; limit?: number; }): void;