import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { TenantBillingDetails } from "./tenant-billing-details.js"; export type TenantResponse = { billingDetails?: TenantBillingDetails | undefined; createdAt?: Date | undefined; id?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; status?: string | undefined; updatedAt?: Date | undefined; }; /** @internal */ export declare const TenantResponse$inboundSchema: z.ZodMiniType; export declare function tenantResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tenant-response.d.ts.map