/** * Databases — provisioning, get, branch, delete (served via unified * `/resources` with `kind=database`). * * Wire shape sourced from `@sylphx/contract` (ADR-084). */ import type { BranchDatabaseInput, CreateDatabaseInput, Database } from '@sylphx/contract'; import type { Client } from './client.js'; export declare const list: (client: Client) => Promise; export type CreateInput = CreateDatabaseInput; export declare const create: (client: Client, input: CreateInput) => Promise; export declare const get: (client: Client, id: string) => Promise; declare const _delete: (client: Client, id: string) => Promise; export { _delete as delete }; export type BranchInput = BranchDatabaseInput; export declare const branch: (client: Client, id: string, input: BranchInput) => Promise; //# sourceMappingURL=databases.d.ts.map