/**
 * Remove bucket command implementation
 */
import { S3ClientWrapper } from '../s3-client';
export interface RbOptions {
    force?: boolean;
}
/**
 * Remove an S3 bucket
 */
export declare function removeBucketCommand(client: S3ClientWrapper, bucketUri: string, options?: RbOptions): Promise<void>;
//# sourceMappingURL=rb.d.ts.map