/** * Sanitize untrusted strings before embedding them into an LLM prompt. * * Strips control/format characters that could break prompt structure or inject instructions. */ export declare function sanitizeForPromptLiteral(value: string): string;