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