export interface GoogleCloudStorageConfig {
    bucket: string;
    credentials: string;
}
export declare const GoogleCloudStorageConfigSerializer: {
    _fromJsonObject(object: any): GoogleCloudStorageConfig;
    _toJsonObject(self: GoogleCloudStorageConfig): any;
};
