/** The version of a formative. */
export type Version = "PRC" | "CPT";
/** An array containing all versions. */
export declare const ALL_VERSIONS: readonly Version[];
/** An object mapping versions to their names. */
export declare const VERSION_TO_NAME_MAP: {
    readonly PRC: "Processual";
    readonly CPT: "Completive";
};
