import type { ContentPart } from '../types.js'; /** * Extract plain text from a user message for tool filtering / preview. * * Accepts either a plain string or a multimodal `ContentPart[]` array; * in the latter case only the `text` parts are concatenated. */ export declare function userMessageToFilterText(message: string | ContentPart[]): string; //# sourceMappingURL=user-message-text.d.ts.map