import { Stmt } from "./parser"; import * as PP from "./preprocessor"; import * as BrsTypes from "./brsTypes"; export { BrsTypes as types }; export { PP as preprocessor }; import { ManifestValue } from "./preprocessor/Manifest"; import { ExecutionOptions } from "./interpreter"; export declare function getLexerParserFn(manifest: Map, options: Partial): (filenames: string[]) => Promise;