import { ASTNodeBegin } from '../begin'; import { ASTNodeEnd } from '../end'; import { ASTNodeStatements } from '../statements'; import { ASTNodeStatement } from './class'; /** * ASTNodeStatementBlock constructor. */ export declare class ASTNodeStatementBlock extends ASTNodeStatement { /** * Block begin. */ begin: ASTNodeBegin; /** * Child nodes. */ statements: ASTNodeStatements; /** * Block begin. */ end: ASTNodeEnd; constructor(); /** * Copy instance. * * @returns Copied instance. */ copy(): this; }