import * as z from "zod"; declare const ImageButtonPropsSchema: z.ZodObject<{ firstImageSrc: z.ZodString; firstImageAlt: z.ZodString; firstImageTitle: z.ZodOptional; secondImageTitle: z.ZodOptional; secondImageSrc: z.ZodString; secondImageAlt: z.ZodString; onClickFirstImage: z.ZodFunction, z.ZodVoid>; onClickSecondImage: z.ZodFunction, z.ZodVoid>; }, "strip", z.ZodTypeAny, { firstImageSrc: string; firstImageAlt: string; secondImageSrc: string; secondImageAlt: string; onClickFirstImage: (args_0: any, ...args: unknown[]) => void; onClickSecondImage: (args_0: any, ...args: unknown[]) => void; firstImageTitle?: string | undefined; secondImageTitle?: string | undefined; }, { firstImageSrc: string; firstImageAlt: string; secondImageSrc: string; secondImageAlt: string; onClickFirstImage: (args_0: any, ...args: unknown[]) => void; onClickSecondImage: (args_0: any, ...args: unknown[]) => void; firstImageTitle?: string | undefined; secondImageTitle?: string | undefined; }>; export type ImageButtonProps = z.infer; export {};