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