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