/** Validates that the provided language is compatible with the file extension. */ export declare function validateLanguageFileCompatibility(language: string, filePath: string): void; /** Checks if a file extension corresponds to a JavaScript/TypeScript file. */ export declare function isJavaScriptTypeScriptFile(filePath: string): boolean;