import type { Command, CommandOptions } from '@teambit/cli'; import type { DeprecationMain } from './deprecation.main.runtime'; export declare class DeprecateCmd implements Command { private deprecation; name: string; arguments: { name: string; description: string; }[]; description: string; extendedDescription: string; group: string; skipWorkspace: boolean; alias: string; options: CommandOptions; loader: boolean; remoteOp: boolean; helpUrl: string; examples: { cmd: string; description: string; }[]; constructor(deprecation: DeprecationMain); report([pattern]: [string], { newId, range }: { newId?: string; range?: string; }): Promise; }