import { z } from 'zod'; import type { Collection } from '../../../entity-definitions/collection.js'; export declare const merchantContactMutationPayloadSchema: z.ZodObject<{ name: z.ZodOptional>; email: z.ZodOptional>; phone: z.ZodOptional>; cellPhone: z.ZodOptional>; type: z.ZodOptional>; position: z.ZodOptional>; description: z.ZodOptional>; }, "strip", z.ZodTypeAny, { type?: string | null | undefined; description?: string | null | undefined; name?: string | null | undefined; email?: string | null | undefined; phone?: string | null | undefined; position?: string | null | undefined; cellPhone?: string | null | undefined; }, { type?: string | null | undefined; description?: string | null | undefined; name?: string | null | undefined; email?: string | null | undefined; phone?: string | null | undefined; position?: string | null | undefined; cellPhone?: string | null | undefined; }>; export type MerchantContactMutationPayload = z.infer; export declare const merchantContactSchema: z.ZodObject<{ name: z.ZodOptional>; email: z.ZodOptional>; phone: z.ZodOptional>; cellPhone: z.ZodOptional>; type: z.ZodOptional>; position: z.ZodOptional>; description: z.ZodOptional>; } & { id: z.ZodNumber; }, "strip", z.ZodTypeAny, { id: number; type?: string | null | undefined; description?: string | null | undefined; name?: string | null | undefined; email?: string | null | undefined; phone?: string | null | undefined; position?: string | null | undefined; cellPhone?: string | null | undefined; }, { id: number; type?: string | null | undefined; description?: string | null | undefined; name?: string | null | undefined; email?: string | null | undefined; phone?: string | null | undefined; position?: string | null | undefined; cellPhone?: string | null | undefined; }>; export type MerchantContact = z.infer; export type MerchantContactCollection = Collection; //# sourceMappingURL=merchant-contact-schema.d.ts.map