import { type MessageSummary, type MutationHint } from "../chat/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Sends an automated or bot-attributed message into an existing live chat after requiring a server administrator. * Routing through the normal message transaction preserves attachment validation, idempotency, search, mentions, delivery, and channel sequencing. */ export declare function messageSendAutomated(executor: DrizzleExecutor, input: { actorUserId: string; chatId: string; text: string; attachmentFileIds?: string[]; clientMutationId?: string; botId?: string; }): Promise<{ message: MessageSummary; hint: MutationHint; }>; //# sourceMappingURL=messageSendAutomated.d.ts.map