import * as z from "zod"; export declare const ContactSchema: z.ZodObject<{ id: z.ZodString; phone: z.ZodString; contactPerson: z.ZodNullable; userId: z.ZodOptional; terreiroId: z.ZodOptional; createdByUserId: z.ZodOptional; createdAt: z.ZodOptional; updatedAt: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; phone: string; contactPerson: string | null; userId?: string | undefined; terreiroId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }, { id: string; phone: string; contactPerson: string | null; userId?: string | undefined; terreiroId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }>; export declare const ContactSectionCardPropsSchema: z.ZodObject<{ contacts: z.ZodNullable; userId: z.ZodOptional; terreiroId: z.ZodOptional; createdByUserId: z.ZodOptional; createdAt: z.ZodOptional; updatedAt: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; phone: string; contactPerson: string | null; userId?: string | undefined; terreiroId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }, { id: string; phone: string; contactPerson: string | null; userId?: string | undefined; terreiroId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { contacts: { id: string; phone: string; contactPerson: string | null; userId?: string | undefined; terreiroId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }[] | null; }, { contacts: { id: string; phone: string; contactPerson: string | null; userId?: string | undefined; terreiroId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }[] | null; }>; export type ContactSectionCardProps = z.infer; export type Contact = z.infer;