/**
 * @author WMXPY
 * @namespace Debug_BreakPoint
 * @description Line
 */
import * as EST from "estree";
import { ScriptLocation } from "../../declare/script-location";
import { MarkedDebugBreakPoint } from "./break-point";
export declare class MarkedDebugLineBreakPoint extends MarkedDebugBreakPoint {
    static fromLineNumber(lineNumber: number, scriptLocation?: ScriptLocation): MarkedDebugLineBreakPoint;
    private readonly _lineNumber;
    private constructor();
    shouldTrigger(scriptLocation: ScriptLocation, node: EST.Node): boolean;
    shouldReset(scriptLocation: ScriptLocation, node: EST.Node): boolean;
}
