import type { JsonToken } from "./json-token.js"; import { type AsyncStringIterable, type StringIterable } from "./single-characters-of.js"; export declare class JsonPushTokenizer { private at; private line; private pos; private readonly recent; private state; onChar(char: string): JsonToken[]; } export declare function jsonTokensOf(...its: StringIterable[]): Generator; export declare function jsonTokensOfAsync(...its: AsyncStringIterable[]): AsyncGenerator; //# sourceMappingURL=json-tokens-of.d.ts.map