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