/**
 * @author WMXPY
 * @namespace Debug_Snapshot
 * @description Position
 */
import * as EST from "estree";
export declare class MarkedDebugSnapshotPosition {
    static fromPosition(position: EST.Position): MarkedDebugSnapshotPosition;
    private readonly _line;
    private readonly _column;
    private constructor();
    get line(): number;
    get column(): number;
}
