import type { FinalizedMsgContext } from "../../../auto-reply/templating.js";
import type { ResolvedAgentRoute } from "../../../routing/resolve-route.js";
import type { ResolvedSlackAccount } from "../../accounts.js";
import type { SlackMessageEvent } from "../../types.js";
import type { SlackChannelConfigResolved } from "../channel-config.js";
import type { SlackMonitorContext } from "../context.js";
export type PreparedSlackMessage = {
    ctx: SlackMonitorContext;
    account: ResolvedSlackAccount;
    message: SlackMessageEvent;
    route: ResolvedAgentRoute;
    channelConfig: SlackChannelConfigResolved | null;
    replyTarget: string;
    ctxPayload: FinalizedMsgContext;
    replyToMode: "off" | "first" | "all";
    isDirectMessage: boolean;
    isRoomish: boolean;
    historyKey: string;
    preview: string;
    ackReactionMessageTs?: string;
    ackReactionValue: string;
    ackReactionPromise: Promise<boolean> | null;
};
