import type { Command } from '@teambit/cli';
import type { Workspace } from '../workspace';
export declare class EnvsUnsetCmd implements Command {
    private workspace;
    name: string;
    description: string;
    arguments: {
        name: string;
        description: string;
    }[];
    options: never[];
    group: string;
    extendedDescription: string;
    constructor(workspace: Workspace);
    report([pattern]: [string]): Promise<string>;
}
