import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Address, Address$Outbound } from "./address.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type TenantBillingDetails = { address?: Address | undefined; email?: string | undefined; helpEmail?: string | undefined; phone?: string | undefined; }; /** @internal */ export declare const TenantBillingDetails$inboundSchema: z.ZodMiniType; /** @internal */ export type TenantBillingDetails$Outbound = { address?: Address$Outbound | undefined; email?: string | undefined; help_email?: string | undefined; phone?: string | undefined; }; /** @internal */ export declare const TenantBillingDetails$outboundSchema: z.ZodMiniType; export declare function tenantBillingDetailsToJSON(tenantBillingDetails: TenantBillingDetails): string; export declare function tenantBillingDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tenant-billing-details.d.ts.map