import { type DrizzleExecutor } from "../../drizzle.js"; import { documentChannelAttachments } from "../../schema.js"; export type DocumentAttachmentRow = typeof documentChannelAttachments.$inferSelect; /** Reads every durable channel attachment for one document in stable creation order. */ export declare function documentAttachmentRowsList(executor: DrizzleExecutor, documentId: string): Promise; /** Reads durable attachments for several documents in stable per-document creation order. */ export declare function documentAttachmentRowsListForDocuments(executor: DrizzleExecutor, documentIds: readonly string[]): Promise; //# sourceMappingURL=documentAttachmentRowsList.d.ts.map