import { LegacyCommand } from '../../legacy-command';
export default class Delete implements LegacyCommand {
    name: string;
    private: boolean;
    internal: boolean;
    description: string;
    alias: string;
    opts: never[];
    action([path, args]: [string, string]): Promise<any>;
    report(str: any): string;
}
