import { Token } from './TokenProcessor';
/**
 * Scan the tokens and assign a "context" to each one. For example, we need to
 * know when a comma separates object literal fields vs array elements so that
 * we can properly handle object shorthand inline.
 */
export default function augmentTokenContext(tokens: Array<Token>): void;
