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