/** * Configuration/write errors for classified fields. @module * * `ClassifiedConfigError` / `ClassifiedRevealError` moved to `kernel/errors.ts` * (stage 2) so `kernel/enclave/classify/*` can throw them without importing * with-*. Re-exported here under the same names so existing import paths * keep working. */ export { ClassifiedConfigError, ClassifiedRevealError, ClassifiedVerifyError, ClassifiedRotationError } from '../../kernel/errors.js'; export declare class ClassifiedNeverStoredError extends Error { readonly collection: string; readonly field: string; constructor(collection: string, field: string); } export declare class ClassifiedValidationError extends Error { readonly collection: string; readonly field: string; constructor(collection: string, field: string, detail: string); }