import * as z from "zod/v4-mini"; import { CustomerIndividualCreate, CustomerIndividualCreate$Outbound } from "./customerindividualcreate.js"; import { CustomerTeamCreate, CustomerTeamCreate$Outbound } from "./customerteamcreate.js"; export type CustomerCreate = CustomerIndividualCreate | CustomerTeamCreate; /** @internal */ export type CustomerCreate$Outbound = CustomerIndividualCreate$Outbound | CustomerTeamCreate$Outbound; /** @internal */ export declare const CustomerCreate$outboundSchema: z.ZodMiniType; export declare function customerCreateToJSON(customerCreate: CustomerCreate): string; //# sourceMappingURL=customercreate.d.ts.map