import type { createDiscordMessageHandler } from "./message-handler.js"; export declare const DEFAULT_DISCORD_BOT_USER_ID = "bot-123"; export declare function createDiscordHandlerParams(overrides?: { botUserId?: string; setStatus?: (patch: Record) => void; abortSignal?: AbortSignal; workerRunTimeoutMs?: number; }): Parameters[0]; export declare function createDiscordPreflightContext(channelId?: string): { data: { channel_id: string; message: { id: string; channel_id: string; attachments: never[]; }; }; message: { id: string; channel_id: string; attachments: never[]; }; route: { sessionKey: string; }; baseSessionKey: string; messageChannelId: string; };