import { z } from "zod"; export declare const ListWaitlistSignupsSchema: z.ZodObject<{ waitlistId: z.ZodString; }, z.core.$strip>; export declare const ListWaitlistOffboardedSignupsSchema: z.ZodObject<{ waitlistId: z.ZodString; }, z.core.$strip>; export declare const CreateWaitlistSchema: z.ZodObject<{ name: z.ZodString; }, z.core.$strip>; export declare const CreateWaitlistSignupSchema: z.ZodObject<{ waitlistId: z.ZodString; email: z.ZodString; }, z.core.$strip>; export declare const CreateWaitlistOffboardedSignupSchema: z.ZodObject<{ waitlistSignupId: z.ZodString; }, z.core.$strip>;