import * as React from '@theia/core/shared/react'; import { InstructionBreakpoint } from '../breakpoint/breakpoint-marker'; import { DebugBreakpoint, DebugBreakpointDecoration, DebugBreakpointOptions } from './debug-breakpoint'; export declare class DebugInstructionBreakpoint extends DebugBreakpoint { readonly origin: InstructionBreakpoint; static create(origin: InstructionBreakpoint, options: DebugBreakpointOptions): DebugInstructionBreakpoint; private constructor(); setEnabled(enabled: boolean): void; protected isEnabled(): boolean; protected isSupported(): boolean; remove(): void; protected doRender(): React.ReactNode; protected renderActions(): React.ReactNode; protected onRemove: () => Promise; protected getBreakpointDecoration(message?: string[]): DebugBreakpointDecoration; } //# sourceMappingURL=debug-instruction-breakpoint.d.ts.map