/** * @purpose Strips string literals (single/double/template) and line/block comments from a source line, * returning only the structural characters ({, }) for brace-depth tracking. * @param line Source code line. * @returns Line with strings and comments removed, keeping only code-level braces. */ export declare function stripStringsAndComments(line: string): string;