/** * English-specific direction mappings for the parser * * Maps English words and abbreviations to language-agnostic Direction constants. * These are static compass-direction mappings owned by the parser locale. */ import { DirectionType } from '@sharpee/world-model'; /** * Full English words → Direction constant mappings. */ export declare const DirectionWords: Record; /** * Abbreviations → Direction constant mappings. */ export declare const DirectionAbbreviations: Record; /** * Parse a direction string to a Direction constant. * Checks abbreviations first (more specific), then full words. * Returns null if the string is not recognized. */ export declare function parseDirection(input: string): DirectionType | null; /** * Get the display word for a Direction constant. * Used for output — "You go north." */ export declare function getDirectionWord(direction: DirectionType): string; //# sourceMappingURL=direction-mappings.d.ts.map