import type { ScopeMain } from '@teambit/scope'; import type { Command, CommandOptions } from '@teambit/cli'; import type { Workspace } from '@teambit/workspace'; export declare class SnapDistanceCmd implements Command { private scope; private workspace?; name: string; description: string; extendedDescription: string; alias: string; options: CommandOptions; loader: boolean; private: boolean; group: string; constructor(scope: ScopeMain, workspace?: Workspace | undefined); report([id, sourceSnap, targetSnap]: [string, string, string]): Promise; }