import { JsonToken } from"./JsonToken";
/**
* Converts a sequence of characters into a sequence of JSON tokens. There's no guarantee that the tokens make
* sense - just that they're lexically correct.
*/exportdeclarefunctionTokenGenerator(inputJson: string): Generator<JsonToken>;