/**
 * @author WMXPY
 * @namespace Debug_Snapshot
 * @description Node
 */
import * as EST from "estree";
import { EST_TYPE } from "../../declare/types";
export declare class MarkedDebugSnapshotNode {
    static fromNode(node: EST.Node): MarkedDebugSnapshotNode;
    private readonly _node;
    private constructor();
    get type(): EST_TYPE;
    getLeadComments(): string[];
    getTailComments(): string[];
}
