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