import type { LexToken, MicroParser, Segment } from "./types.js";
export declare const lexerProfiles: {
    readonly head: MicroParser[];
    readonly name: MicroParser[];
    readonly content: MicroParser[];
    readonly kind: MicroParser[];
    readonly id: MicroParser[];
    readonly in: MicroParser[];
    readonly sort: MicroParser[];
};
export declare function tokenizeBody(seg: Segment): LexToken[];
