/** * Find By ID Method * * Finds a single document by ID from a collection with validation and DataLoader setup. */ import type { RevealDocument, RevealRequest, RevealUIInstance } from '../../types/index.js'; export declare function findByID(instance: RevealUIInstance, ensureDbConnected: () => Promise, options: { collection: string; id: string | number; depth?: number; req?: RevealRequest; }): Promise; //# sourceMappingURL=findById.d.ts.map