import type { Segment, ParsedKeyword } from '../parsers/types.js';
/**
 * Semantic analyser for `@id`.
 *
 * • Accepts only `uuid` tokens and returns their `.value` strings in order.
 * • Any other token kind is reported as an “invalid token for @id” error.
 */
export declare function analyzeId(seg: Segment): ParsedKeyword<'id', string[]>;
