import type { Owner } from "./owner";
export type Content = {
    key: string;
    lastModified: string;
    eTag: string;
    size: number;
    owner: Owner;
    storageClass: string;
};
export type CommonPrefixes = {
    prefix: string;
};
export type BucketContents = {
    name: string;
    encodingType?: string;
    prefix?: string;
    marker?: string;
    maxKeys: number;
    isTruncated: boolean;
    nextMarker?: string;
    contentsList: Array<Content>;
    commonPrefixesList: Array<CommonPrefixes>;
    delimiter?: string;
};
//# sourceMappingURL=object.d.ts.map