import type { Upload, DbOperation, DocumentId } from './types.ts'; /** * Internal helper to get ALL uploads for a document by document ID (including hidden). * Used internally for collision checking when adding/updating uploads. * * @param client Database client * @param documentId The document ID * @returns Array of all Upload objects (including hidden), or empty array if none found */ export declare const getAllUploadsForDocument: DbOperation<[DocumentId], Upload[]>; //# sourceMappingURL=getAllUploadsForDocument.d.ts.map