import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "./models/index.js"; export declare class Tenants extends ClientSDK { /** * Get billing usage for the current tenant * * @remarks * Use when showing the current tenant's billing usage (e.g. admin billing page or usage caps). Returns subscription and usage for the tenant. */ getTenantBillingUsage(options?: RequestOptions): Promise; /** * Update a tenant * * @remarks * Use when changing tenant details (e.g. name or billing info). Request body contains the fields to update. */ updateTenant(request: models.UpdateTenantRequest, options?: RequestOptions): Promise; /** * Get tenant by ID * * @remarks * Get tenant by ID */ getTenantById(id: string, options?: RequestOptions): Promise; } //# sourceMappingURL=tenants.d.ts.map