/** * Autonomi SDK - Tenant Management * * Tenant-related operations. These are implemented as methods on AutonomiClient * directly (see client.ts). This module re-exports the relevant types and * documents the tenant management interface for reference. * * Tenant methods on AutonomiClient: * - listTenants(): Promise * - getTenant(tenantId): Promise * - createTenant(name, description?): Promise * - deleteTenant(tenantId): Promise */ export type { Tenant } from './types.js'; //# sourceMappingURL=tenants.d.ts.map