import type { ParsedKeyword, Segment } from '../parsers/types.js';
export type KeywordAnalyser = (seg: Segment) => ParsedKeyword;
export declare const registry: Record<string, KeywordAnalyser>;
