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