/**
 * List S3 buckets and objects command implementation
 */
import { S3ClientWrapper } from '../s3-client';
export interface LsOptions {
    recursive?: boolean;
    humanReadable?: boolean;
    summarize?: boolean;
}
/**
 * List S3 buckets or objects
 */
export declare function listCommand(client: S3ClientWrapper, path?: string, options?: LsOptions): Promise<void>;
//# sourceMappingURL=ls.d.ts.map