import { ASTNodeIdentifier } from './identifier'; import { ASTNodeArguments } from './arguments'; import { ASTNodeComment } from './comment'; import { ASTNode } from './class'; /** * ASTNodeBegin constructor. */ export declare class ASTNodeBegin extends ASTNode { /** * Instruction identifier. */ identifier: ASTNodeIdentifier; /** * Arguments collection. */ arguments: ASTNodeArguments; /** * Line comment. */ comment: ASTNodeComment; constructor(); /** * Copy instance. * * @returns Copied instance. */ copy(): this; }