import TOSBase from '../base'; export interface GetBucketLocationInput { bucket: string; } export interface GetBucketLocationOutput { ExtranetEndpoint: string; IntranetEndpoint: string; Region: string; } export declare function getBucketLocation(this: TOSBase, input: GetBucketLocationInput): Promise>;