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