import type { ValidatedNEA, ValueNotEnumValueError } from "@apple/cktool.core"; import { CKDBShareAcceptanceStatus } from "./CKDBShareAcceptanceStatus"; export * from "./CKDBShareAcceptanceStatus"; /** * @hidden * @internal */ export declare const jsonCodecCKDBShareAcceptanceStatus: { readonly getEncoder: () => (value: unknown) => ValidatedNEA; readonly getDecoder: () => (value: unknown) => ValidatedNEA; }; /** * Attempts to convert the value passed in to a valid value * of the {@link CKDBShareAcceptanceStatus } enumeration. * If the value is not valid, this function throws * {@link ValueNotEnumValueError}. * * @returns The value type-asserted to be a valid value * of the CKDBShareAcceptanceStatus enumeration. */ export declare const toCKDBShareAcceptanceStatus: (value: unknown) => CKDBShareAcceptanceStatus;