import type { CommandContext } from "../command_handler.js"; import type { ExecuteResult } from "../result.js"; export declare function rmCommand(context: CommandContext): Promise; interface RmFlags { force: boolean; recursive: boolean; dir: boolean; paths: string[]; } export declare function parseArgs(args: string[]): RmFlags; export {}; //# sourceMappingURL=rm.d.ts.map