import type { Segment, ParsedKeyword, Kind } from '../parsers/types.js';
export declare const KINDS: Kind[];
/**
 * `@kind` analyser
 * • Accepts only string tokens.
 * • Each string must be present in the KINDS allow-list.
 */
export declare function analyzeKind(seg: Segment): ParsedKeyword<'kind', string[]>;
