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