import { ASTNodeComment } from './comment'; import { ASTNode } from './class'; /** * ASTNodeEnd constructor. */ export declare class ASTNodeEnd extends ASTNode { /** * Line comment. */ comment: ASTNodeComment; constructor(); /** * Copy instance. * * @returns Copied instance. */ copy(): this; }