import { Dictionary } from "../common"; import { SyntaxTree } from "../compiler/parser"; export declare function getModule(name: string): Dictionary; export declare function getModuleFunction(name: string, functionName: string): SyntaxTree.FileBlockFunction; export declare function forEachModuleFunction(name: string, callback: (fn: SyntaxTree.FileBlockFunction, name: string) => any): void;