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