/** * @file English Grammar Rules * @description Standard grammar patterns for English interactive fiction * * Rule Priority Guidelines: * - 100+: Semantic rules with trait constraints (e.g., .hasTrait(TraitType.ENTERABLE)) * - 100: Standard patterns * - 95: Synonyms/alternatives * - 90: Abbreviations * * Semantic rules should come first to match before fallback patterns. */ import { GrammarBuilder } from '@sharpee/if-domain'; /** * Define English grammar rules * @param grammar The grammar builder to use */ export declare function defineGrammar(grammar: GrammarBuilder): void; //# sourceMappingURL=grammar.d.ts.map