/**
 * Processes the input string and return a tokenized, line by line, high-level representation.
 * @param input The input file, represented as a single string
 * @param strict When set to <code>false</code> any parsing exception will not be reported
 */
export declare const tokenize: (input: string, strict?: boolean) => Iterable<RegExpExecArray>;
