import { SoupElement } from "./SoupElement"; /** * 注释节点 */ export declare class SoupComment extends SoupElement { constructor(text: string, parent?: any, previousElement?: any, nextElement?: any); }