/**
 * Remove S3 objects command implementation
 */
import { S3ClientWrapper } from '../s3-client';
export interface RmOptions {
    recursive?: boolean;
    dryRun?: boolean;
    include?: string[];
    exclude?: string[];
}
/**
 * Remove S3 objects
 */
export declare function removeCommand(client: S3ClientWrapper, path: string, options?: RmOptions): Promise<void>;
//# sourceMappingURL=rm.d.ts.map