/** This schema defines the configuration details required for a bucket, including authentication and endpoint information. */
export interface Bucket {
    /** A unique alphanumeric string used as part of the authentication process to access the bucket. */
    accessKey: string;
    /** The URL where the bucket can be accessed over the internet. */
    endpoint: string;
    /** A unique identifier assigned to the bucket. */
    id: string;
    /** Confidential string used with access key for bucket authentication. */
    secretKey: string;
}
//# sourceMappingURL=Bucket.d.ts.map