import type { Command } from '@teambit/cli'; import type { ScopeTrust } from './scope-trust'; export declare class ScopeTrustCmd implements Command { private scopeTrust; name: string; description: string; arguments: { name: string; description: string; }[]; options: never[]; group: string; loadAspects: boolean; extendedDescription: string; constructor(scopeTrust: ScopeTrust); report(args: string[]): Promise; private formatList; }