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