import { type CommonOpts } from "./common.js";
export declare function expandPathsToDeletions(repoFiles: string[], requested: string[]): string[];
export interface RmOpts extends CommonOpts {
    message?: string;
    dryRun?: boolean;
}
export declare function rmCommand(repo: string, paths: string[], opts: RmOpts): Promise<void>;
