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