import { z } from "zod";
export declare const WaitingForInputData: z.ZodObject<{
    id: z.ZodString;
    userId: z.ZodString;
    bumpCount: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    id: string;
    userId: string;
    bumpCount: number;
}, {
    id: string;
    userId: string;
    bumpCount: number;
}>;
export type WaitingForInputData = z.infer<typeof WaitingForInputData>;
