import type { Versionage } from "./table-types.js"; /** Canonical KERI/ACDC protocol version constant for v1.0 surfaces. */ export declare const Vrsn_1_0: Versionage; /** Canonical KERI/ACDC protocol version constant for v2.0 surfaces. */ export declare const Vrsn_2_0: Versionage; /** Supported wire-kind literals used by serder and parser layers. */ export declare const Kinds: { readonly json: "JSON"; readonly cbor: "CBOR"; readonly mgpk: "MGPK"; readonly cesr: "CESR"; }; /** Supported protocol literals used by version strings and serders. */ export declare const Protocols: { readonly keri: "KERI"; readonly acdc: "ACDC"; }; /** Union of supported wire-kind literal values. */ export type Kind = (typeof Kinds)[keyof typeof Kinds]; /** Union of supported protocol literal values. */ export type Protocol = (typeof Protocols)[keyof typeof Protocols]; //# sourceMappingURL=versions.d.ts.map