import { Command } from "../command";
export default class Rm extends Command {
    commandString: string;
    description: string;
    action(type: string): Promise<void>;
}
