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