/**
 * Read C99 style IDENTIFIER token
 * @param {string} text
 * @param {number} cursor
 * @param {number} length
 * @returns {Token}
 */
export function readIdentifierToken(text: string, cursor: number, length: number): Token;
/**
 * @readonly
 * @type {RegExp}
 */
export const RX_IDENTIFIER_FIRST_CHAR: RegExp;
//# sourceMappingURL=readIdentifierToken.d.ts.map