import { type DrizzleExecutor } from "../drizzle.js"; import { type DocumentSummary } from "./types.js"; /** * Lists every document visible to the actor, newest activity first, without reading * content: documents they own plus documents attached to any channel where they are a member. * Each summary exposes all attachments to the owner and only caller-visible attachments * to channel members, preserving `not_found`-equivalent non-probeability across channels. * This read-only global collection boundary exists independently of any one channel. */ export declare function documentList(executor: DrizzleExecutor, actorUserId: string): Promise; //# sourceMappingURL=documentList.d.ts.map