import { z } from "zod";
export declare const ZSessionId: z.ZodObject<{
    type: z.ZodLiteral<"sessionId">;
    sessionId: z.ZodString;
}, "strip", z.ZodTypeAny, {
    type?: "sessionId";
    sessionId?: string;
}, {
    type?: "sessionId";
    sessionId?: string;
}>;
export type SessionId = z.infer<typeof ZSessionId>;
