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