import * as React from '@theia/core/shared/react'; import { CommandMenu, MenuModelRegistry, MenuPath } from '@theia/core'; import { KeybindingRegistry } from '@theia/core/lib/browser'; import { ContextKeyService } from '@theia/core/lib/browser/context-key-service'; import { ReactWidget } from '@theia/core/lib/browser/widgets'; import { DebugViewModel } from './debug-view-model'; export declare class DebugToolBar extends ReactWidget { static readonly MENU: MenuPath; static readonly CONTROLS: MenuPath; protected readonly menuModelRegistry: MenuModelRegistry; protected readonly keybindingRegistry: KeybindingRegistry; protected readonly contextKeyService: ContextKeyService; protected readonly model: DebugViewModel; protected init(): void; protected render(): React.ReactNode; protected renderContributedCommands(): React.ReactNode; protected debugAction(commandMenuNode: CommandMenu): React.ReactNode; protected acceleratorFor(commandId: string): string | undefined; } //# sourceMappingURL=debug-toolbar-widget.d.ts.map