import Type, { type Static } from "typebox"; export declare const CoreClaimNormalTypeSchema: Type.TLiteral<"normal">; export type TCoreClaimNormalType = Static; export declare const CoreClaimCitationTypeSchema: Type.TLiteral<"citation">; export type TCoreClaimCitationType = Static; export declare const CoreClaimAxiomaticTypeSchema: Type.TLiteral<"axiomatic">; export type TCoreClaimAxiomaticType = Static; export declare const CoreClaimTypeSchema: Type.TUnion<[Type.TLiteral<"normal">, Type.TLiteral<"citation">, Type.TLiteral<"axiomatic">]>; export type TCoreClaimType = Static; export declare const CoreClaimSchema: Type.TObject<{ id: Type.TString; version: Type.TNumber; frozen: Type.TBoolean; checksum: Type.TString; type: Type.TUnion<[Type.TLiteral<"normal">, Type.TLiteral<"citation">, Type.TLiteral<"axiomatic">]>; }>; export type TCoreClaim = Static; //# sourceMappingURL=claim.d.ts.map