import { z } from 'zod'; /** * Lead request schema */ export interface LeadRequest { aidolId: string; email: string; } /** * Lead response schema */ export declare const leadResponseSchema: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; export type LeadResponse = z.infer; //# sourceMappingURL=lead.d.ts.map