import type { Accessor } from '../../accessor/base.ts'; import type { FindOptions } from '../../resource/base.ts'; import type { PathSpec } from '../../types.ts'; import type { ObjectStoreDriver } from './driver.ts'; export type FindFn = (accessor: A, path: PathSpec, options?: FindOptions) => Promise; /** Build the recursive predicate walk over one driver. */ export declare function makeFind(driver: ObjectStoreDriver): FindFn; //# sourceMappingURL=find.d.ts.map