/**
 * Prepares a code snippet for display in error messages by removing comments
 * and normalizing whitespace to a single line.
 *
 * @param code - The code snippet to clean.
 * @returns The cleaned single-line code without comments.
 */
export declare function sanitizeCode(code: string): string
