/** * English (US) Parser for Sharpee Interactive Fiction Platform * * This package provides English-specific parsing functionality * for converting natural language commands into structured commands. */ export { EnglishParser } from './english-parser'; export { EnglishParser as Parser } from './english-parser'; export type { Parser as ParserInterface } from '@sharpee/if-domain'; export type { PartialMatchFailure, SlotFailure, MatchFailureReason } from './parse-failure'; export { analyzeBestFailure } from './parse-failure'; export type { EntityReference, PronounContext, RecognizedPronoun } from './pronoun-context'; export { PronounContextManager, isRecognizedPronoun, RECOGNIZED_PRONOUNS, INANIMATE_IT, INANIMATE_THEM } from './pronoun-context'; /** * Package metadata */ export declare const metadata: { languageCode: string; languageName: string; parserVersion: string; supportedPatterns: string[]; features: string[]; }; //# sourceMappingURL=index.d.ts.map