import { type ResponsePrefixContext } from "../auto-reply/reply/response-prefix-template.js"; import type { RemoteClawConfig } from "../config/config.js"; export type ReplyPrefixContextBundle = { prefixContext: ResponsePrefixContext; responsePrefix?: string; enableSlackInteractiveReplies?: boolean; responsePrefixContextProvider: () => ResponsePrefixContext; }; export type ReplyPrefixOptions = Pick; export declare function createReplyPrefixContext(params: { cfg: RemoteClawConfig; agentId: string; channel?: string; accountId?: string; }): ReplyPrefixContextBundle; export declare function createReplyPrefixOptions(params: { cfg: RemoteClawConfig; agentId: string; channel?: string; accountId?: string; }): ReplyPrefixOptions;