import * as z from "zod"; export declare const DirigenteSchema: z.ZodObject<{ name: z.ZodString; contact: z.ZodString; imageUrl: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; contact: string; imageUrl?: string | undefined; }, { name: string; contact: string; imageUrl?: string | undefined; }>; export declare const ExpiredLinkPagePropsSchema: z.ZodObject<{ dirigentes: z.ZodArray; }, "strip", z.ZodTypeAny, { name: string; contact: string; imageUrl?: string | undefined; }, { name: string; contact: string; imageUrl?: string | undefined; }>, "many">; onClose: z.ZodOptional, z.ZodUnknown>>; }, "strip", z.ZodTypeAny, { dirigentes: { name: string; contact: string; imageUrl?: string | undefined; }[]; onClose?: ((...args: unknown[]) => unknown) | undefined; }, { dirigentes: { name: string; contact: string; imageUrl?: string | undefined; }[]; onClose?: ((...args: unknown[]) => unknown) | undefined; }>; export type Dirigente = z.infer; export type ExpiredLinkPageProps = z.infer;