import { z } from 'zod'; export declare const sessionDataSchema: z.ZodObject<{ address: z.ZodString; userProfile: z.ZodObject<{ id: z.ZodString; handle: z.ZodString; name: z.ZodString; avatarForegroundColor: z.ZodString; avatarBackgroundColor: z.ZodString; aboutMe: z.ZodString; socialLinks: z.ZodArray, "many">; favorites: z.ZodArray; }, "strip", z.ZodTypeAny, { name: string; id: string; handle: string; avatarForegroundColor: string; avatarBackgroundColor: string; aboutMe: string; socialLinks: { title: string; address: string; }[]; favorites: string[]; }, { name: string; id: string; handle: string; avatarForegroundColor: string; avatarBackgroundColor: string; aboutMe: string; socialLinks: { title: string; address: string; }[]; favorites: string[]; }>; }, "strip", z.ZodTypeAny, { address: string; userProfile: { name: string; id: string; handle: string; avatarForegroundColor: string; avatarBackgroundColor: string; aboutMe: string; socialLinks: { title: string; address: string; }[]; favorites: string[]; }; }, { address: string; userProfile: { name: string; id: string; handle: string; avatarForegroundColor: string; avatarBackgroundColor: string; aboutMe: string; socialLinks: { title: string; address: string; }[]; favorites: string[]; }; }>;