import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { QuickCmds, SSHProfileOption } from '../api'; export declare class EditCommandModalComponent { private modalInstance; allGroups: string[]; profiles: SSHProfileOption[]; command: QuickCmds; isCapturingShortcut: boolean; specialCommandsInfo: string; constructor(modalInstance: NgbActiveModal); onKeyDown(event: KeyboardEvent): void; startCaptureShortcut(event: Event): void; isProfileSelected(profileId: string): boolean; toggleProfile(profileId: string): void; save(): void; cancel(): void; }