import type { KlawConfig } from "../../config/types.klaw.js"; export type ConversationLabelParams = { userMessage: string; prompt: string; cfg: KlawConfig; agentId?: string; agentDir?: string; maxLength?: number; }; export declare function generateConversationLabel(params: ConversationLabelParams): Promise;