import { z } from 'zod/v4';

declare const stixSpecVersionSchema: z.ZodLiteral<"2.1">;
type StixSpecVersion = z.infer<typeof stixSpecVersionSchema>;

export { type StixSpecVersion, stixSpecVersionSchema };
