declare function isKeyword(code: string): boolean; declare function isIdentifierStart(code: string): boolean; declare function isIdentifierChar(code: string): boolean; export { isIdentifierChar, isIdentifierStart, isKeyword };