import type { Owner } from "./owner";
export type Bucket = {
    name: string;
    location?: string;
    createDate?: string;
    type?: string;
};
export type ListAllMyBuckets = {
    owner: Owner;
    buckets: Array<Bucket>;
};
//# sourceMappingURL=bucket.d.ts.map