import { ReturnCode } from '../../types/command'; import { TargetCommand } from '../../types/command/targetCommand'; export declare class ContextCommand extends TargetCommand { private _config?; constructor(args: string[]); execute(): Promise; getConfig(): Promise; executeCreateContext(): Promise; executeDeleteContext(): Promise; executeEditContext(): Promise; executeExportContext(): Promise; executeListContext(): Promise; }