import * as z from "zod/v4-mini"; import { TenantBillingDetails, TenantBillingDetails$Outbound } from "./tenant-billing-details.js"; export type UpdateTenantRequest = { billingDetails?: TenantBillingDetails | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; }; /** @internal */ export type UpdateTenantRequest$Outbound = { billing_details?: TenantBillingDetails$Outbound | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; }; /** @internal */ export declare const UpdateTenantRequest$outboundSchema: z.ZodMiniType; export declare function updateTenantRequestToJSON(updateTenantRequest: UpdateTenantRequest): string; //# sourceMappingURL=update-tenant-request.d.ts.map