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