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