import { IHighlightTokenType } from "../_types/IHighlightTokenType"; import { ITokenConfig } from "chevrotain"; /** * Creates multiple highlight tokens at once. * The order of these of these tokens matter, see {@link https://sap.github.io/chevrotain/docs/tutorial/step1_lexing.html#creating-the-lexer}. * @param config The config containing the token specification * @returns An object with the tokens in map and list form */ export declare function createHighlightTokens & { name?: string; tags: string[]; }; }>(config: T): { tokens: { [P in keyof T]: IHighlightTokenType; }; tokenList: IHighlightTokenType[]; }; //# sourceMappingURL=createHighlightTokens.d.ts.map