import type { ValidationResult } from './types.js'; export declare function validateAppDescription(input: unknown): ValidationResult; /** * Strip control characters from text intended for prompt inclusion. * Does NOT neutralize injection — that's the prompt guard's job. */ export declare function sanitizeForPrompt(text: string): string;