import { type MessageSummary, type MutationHint } from "../chat/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Tombstones messages and removes their messageSearchDocuments, messageRevisions, notifications, pluginMcpAppCalls, and pluginResourceLinks payloads. * One chat mutation keeps visible history, search results, and badges aligned on the same deletion point. */ export declare function messageDelete(executor: DrizzleExecutor, actorUserId: string, messageId: string): Promise<{ message: MessageSummary; hint: MutationHint; }>; //# sourceMappingURL=messageDelete.d.ts.map