import { ASTBase, ASTBaseBlock, ASTBaseBlockOptions } from './base'; import { ASTIdentifier } from './identifier'; export interface ASTForGenericStatementOptions extends ASTBaseBlockOptions { variable: ASTIdentifier; iterator: ASTBase; } export declare class ASTForGenericStatement extends ASTBaseBlock { variable: ASTIdentifier; iterator: ASTBase; constructor(options: ASTForGenericStatementOptions); toString(): string; clone(): ASTForGenericStatement; }