import type { LanguageDefinition } from '../types/language.js'; export type SourceCodeGrammar = NonNullable; /** Removes comments from source code according to the provided language grammar. */ export declare function removeCommentsInSourceCode(grammar: SourceCodeGrammar, sourceCode: string): string; /** Removes comments and string literal contents while preserving executable interpolation expressions. */ export declare function removeCommentsAndStringsInSourceCode(grammar: SourceCodeGrammar, sourceCode: string): string;