import type { ErrorFromValidatedNEA, ValidatedNEA } from "@apple/cktool.core"; import { CKDBUserIdentityLookupInfo } from "./CKDBUserIdentityLookupInfo"; export * from "./CKDBUserIdentityLookupInfo"; declare const getJsonEncoder: () => (maybeObject: T) => ValidatedNEA; declare const getJsonDecoder: () => (maybeObject: T) => ValidatedNEA; export declare const jsonCodecCKDBUserIdentityLookupInfo: { readonly getEncoder: () => (val: CKDBUserIdentityLookupInfo) => ReturnType>; readonly getDecoder: () => (val: unknown) => ValidatedNEA>>, CKDBUserIdentityLookupInfo>; };