import { CKDBZone } from "./CKDBZoneCodec"; /** * An object that represents results of fetching a zone. * * API schema: CKDBZoneResponse * API version: 1.3.2 */ export interface CKDBZoneResponse { /** */ zone: CKDBZone; } /** * An object the provides the functions that * transform {@link CKDBZoneResponse } to and from JSON. */ export declare const jsonCodecCKDBZoneResponseOwnProperties: { /** * Get an encoder that transforms {@link CKDBZoneResponse }'s * own properties to JSON. */ readonly getEncoder: () => { readonly zone: (val: CKDBZone) => import("@apple/cktool.core").ValidatedNEA; }; /** * Get a decoder that transforms {@link CKDBZoneResponse }'s * own properties from JSON. */ readonly getDecoder: () => { readonly zone: (val: unknown) => import("@apple/cktool.core").ValidatedNEA; }; };