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