import { Token } from "./tokenizer/index"; import { Scope } from "./tokenizer/state"; export declare class File { tokens: Array; scopes: Array; constructor(tokens: Array, scopes: Array); } export declare function parse(input: string, isJSXEnabled: boolean, isTypeScriptEnabled: boolean, isFlowEnabled: boolean): File;