import { Protocol as Crdp } from 'devtools-protocol';
import { DebugProtocol } from 'vscode-debugprotocol';
export declare class InternalSourceBreakpoint {
    static readonly LOGPOINT_URL: string;
    readonly line: number;
    readonly column?: number;
    readonly condition?: string;
    readonly hitCondition?: string;
    constructor(breakpoint: DebugProtocol.SourceBreakpoint);
}
export declare function stackTraceWithoutLogpointFrame(stackTrace: Crdp.Runtime.StackTrace): Crdp.Runtime.StackTrace;
