import { Observable } from "rxjs"; import { Repo, RepoEntity, RepoSearch, Search } from "./types"; /** * Find entities using supplied parameters. * * @remarks * * {@link Search.limit} determines how many records should be returned. The default is * all records. * * @param repo - The repo to find entities in. * @param search - The search conditions. * @returns Observable collection of entities found. */ export declare function find, TEntity = RepoEntity, TSearch = RepoSearch>(repo: TRepo, search?: Search): Observable; //# sourceMappingURL=find.d.ts.map