declare module '../index' {
    interface Pipe {
        /**
         * Remove all {@link Files} piped in.
         *
         * @param dryRun If `true` only log what would be removed (default `false`)
         */
        rmf(dryRun?: boolean): Promise<undefined>;
    }
}
export {};
