/** * Generic managed resources — list/get across database, kv, blob, search, and * volume resources through the unified `/resources` Management API. */ import type { ManagedResource as Resource, ResourceType } from '@sylphx/contract'; import type { Client } from './client.js'; export type ResourceKind = ResourceType; export type { Resource }; export declare const list: (client: Client, options?: { readonly kind?: ResourceKind; }) => Promise; export declare const get: (client: Client, id: string) => Promise; //# sourceMappingURL=resources.d.ts.map