import { z } from 'zod'; export declare const customerMembershipMutationPayloadSchema: z.ZodObject<{ isActive: z.ZodBoolean; typeKey: z.ZodString; accountNumber: z.ZodString; }, "strip", z.ZodTypeAny, { isActive: boolean; typeKey: string; accountNumber: string; }, { isActive: boolean; typeKey: string; accountNumber: string; }>; export type CustomerMembershipMutationPayload = z.infer; export declare const customerMembershipSchema: z.ZodObject<{ isActive: z.ZodBoolean; typeKey: z.ZodString; accountNumber: z.ZodString; } & { id: z.ZodReadonly; createdAt: z.ZodReadonly; updatedAt: z.ZodReadonly; }, "strip", z.ZodTypeAny, { id: number; isActive: boolean; createdAt: string; updatedAt: string; typeKey: string; accountNumber: string; }, { id: number; isActive: boolean; createdAt: string; updatedAt: string; typeKey: string; accountNumber: string; }>; export type CustomerMembership = z.infer; //# sourceMappingURL=customer-membership-schema.d.ts.map