/**
 * @since 20180808 11:11
 * @author vivaxy
 */
import BaseNode from './base';
import NODE_TYPES from '../types/node-types';
export default class CommentNode extends BaseNode {
    comment: string;
    constructor(comment: string);
    toJSON(): {
        type: NODE_TYPES;
        comment: string;
    };
}
