import { z } from "zod"; export declare const preferencesSchema: z.ZodObject<{ value: z.ZodString; platform: z.ZodNullable>; }, "strip", z.ZodTypeAny, { value: string; platform: "ios" | "argentx" | "android" | "webwallet" | null; }, { value: string; platform: "ios" | "argentx" | "android" | "webwallet" | null; }>; export type Preferences = z.infer; export declare const preferencesEndpointPayload: z.ZodObject<{ preferences: z.ZodRecord>; }, "strip", z.ZodTypeAny, { value: string; platform: "ios" | "argentx" | "android" | "webwallet" | null; }, { value: string; platform: "ios" | "argentx" | "android" | "webwallet" | null; }>>; }, "strip", z.ZodTypeAny, { preferences: Record; }, { preferences: Record; }>; export type PreferencesPayload = z.infer;