import type es from 'estree'; import { ErrorSeverity, ErrorType, SourceErrorWithNode } from './base'; export declare class NoAssignmentToForVariableError extends SourceErrorWithNode { type: ErrorType; severity: ErrorSeverity; explain(): string; elaborate(): string; }