/** A context. */
export type Context = "EXS" | "FNC" | "RPS" | "AMG";
/** An array containing all contexts. */
export declare const ALL_CONTEXTS: readonly Context[];
/** An object mapping contexts to their names. */
export declare const CONTEXT_TO_NAME_MAP: {
    readonly EXS: "Existential";
    readonly FNC: "Functional";
    readonly RPS: "Representational";
    readonly AMG: "Amalgamative";
};
