import type { ReplyPayload } from "../../auto-reply/reply-payload.js"; import type { KlawConfig } from "../../config/types.klaw.js"; import type { TtsAutoMode } from "../../config/types.tts.js"; export declare function resolveMessageActionSessionTtsAuto(params: { cfg: KlawConfig; sessionKey?: string; agentId?: string; }): TtsAutoMode | undefined; export declare function maybeApplyTtsToMessageActionSendPayload(params: { payload: ReplyPayload; cfg: KlawConfig; channel: string; accountId?: string | null; agentId?: string; sessionKey?: string; inboundAudio?: boolean; dryRun: boolean; }): Promise;