import { z } from 'zod'; export declare const serializedCredentialSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; type: z.ZodString; }, "strict", z.ZodTypeAny, { id: string; name: string; type: string; }, { id: string; name: string; type: string; }>; export type SerializedCredential = z.infer;