/** An illocution. */
export type Illocution = "ASR" | "DIR" | "DEC" | "IRG" | "VRF" | "ADM" | "POT" | "HOR" | "CNJ";
/** An array containing all illocutions. */
export declare const ALL_ILLOCUTIONS: readonly Illocution[];
/** An object mapping from illocutuons to their names. */
export declare const ILLOCUTION_TO_NAME_MAP: {
    readonly ASR: "Assertive";
    readonly DIR: "Directive";
    readonly DEC: "Declarative";
    readonly IRG: "Interrogative";
    readonly VRF: "Verificative";
    readonly ADM: "Admonitive";
    readonly POT: "Potentiative";
    readonly HOR: "Hortative";
    readonly CNJ: "Conjectural";
};
