import * as Core from 'subhosting/core'; import { APIResource } from 'subhosting/resource'; import * as DatabasesAPI from 'subhosting/resources/databases'; import * as Shared from 'subhosting/resources/shared'; export declare class Databases extends APIResource { /** * Update KV database details */ update(databaseId: string, body: DatabaseUpdateParams, options?: Core.RequestOptions): Core.APIPromise; } export interface DatabaseUpdateParams { /** * The description of the KV database to be updated to. If this is `null`, no * update will be made to the KV database description. */ description?: string | null; } export declare namespace Databases { export import DatabaseUpdateParams = DatabasesAPI.DatabaseUpdateParams; } //# sourceMappingURL=databases.d.ts.map