import * as ast from "../grammar/ast"; import { Diagnostic, DiagnosticSeverity } from "../diagnostic"; import { RuleFactory } from "../linting-rule"; import { InputSource } from "../semantics/program"; export declare const shadowingVariablesNotAllowed: ((level: DiagnosticSeverity, message: string, source: InputSource, range: ast.SourceRange) => Diagnostic) & { code: import("../diagnostic").DiagnosticCode; }; export declare const no_shadowing: RuleFactory; export default no_shadowing;