import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerOrganization } from "./customerorganization.js"; import { CustomerProduct } from "./customerproduct.js"; /** * Schema of an organization and related data for customer portal. */ export type CustomerOrganizationData = { organization: CustomerOrganization; products: Array; }; /** @internal */ export declare const CustomerOrganizationData$inboundSchema: z.ZodMiniType; export declare function customerOrganizationDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerorganizationdata.d.ts.map