import { LegacyCommand } from '../../legacy-command';
import { DeprecationResult } from '../../../scope/component-ops/components-deprecation';
export default class Deprecate implements LegacyCommand {
    name: string;
    private: boolean;
    internal: boolean;
    description: string;
    alias: string;
    opts: never[];
    action([path, args]: [string, string]): Promise<any>;
    report(deprecationResult: DeprecationResult): string;
}
