export declare const UdtErrorCode: { readonly VcSchemaAnnotationMissing: "T001"; readonly UnexpectedTypeInSerialization: "T002"; readonly UnsupportedTypeInUDT: "T003"; readonly IncompatibleUDT: "T004"; readonly VcSchemaMissingSlug: "T005"; readonly VcSchemaDifferentOwner: "T006"; }; export type UdtErrorCode = (typeof UdtErrorCode)[keyof typeof UdtErrorCode]; export declare class UdtError extends Error { code: UdtErrorCode; constructor(code: UdtErrorCode, msg: string); } //# sourceMappingURL=error.d.ts.map