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