import * as z from "zod/v4-mini"; /** * Schema for creating an owner member during customer creation. */ export type MemberOwnerCreate = { /** * The email address of the member. */ email: string; name?: string | null | undefined; /** * The ID of the member in your system. This must be unique within the customer. */ externalId?: string | null | undefined; }; /** @internal */ export type MemberOwnerCreate$Outbound = { email: string; name?: string | null | undefined; external_id?: string | null | undefined; }; /** @internal */ export declare const MemberOwnerCreate$outboundSchema: z.ZodMiniType; export declare function memberOwnerCreateToJSON(memberOwnerCreate: MemberOwnerCreate): string; //# sourceMappingURL=memberownercreate.d.ts.map