import AST from './AST'; export default class IfAST extends AST { readonly condition: AST; readonly statementList: AST[]; readonly isOneLine: boolean; next: IfAST | AST[] | null; constructor(condition: AST, statementList: AST[], isOneLine?: boolean); addNext(next: IfAST | AST[]): void; } //# sourceMappingURL=IfAST.d.ts.map