/** * Enum representing the possible grammatical cases. */ export declare enum GrammaticalCase { NOMINATIVE = "nominative", GENITIVE = "genitive", DATIVE = "dative", ACCUSATIVE = "accusative", ABLATIVE = "ablative", LOCATIVE = "locative", VOCATIVE = "vocative" }