import { PathLike, ProcessorContext } from '../../models'; export declare function loadModule(request: string, context: string, force?: boolean): T | undefined; export declare function runScript(source: string, options: { fileName: PathLike; lineOffset: number; context: Record; deleteVariable?: (key: string) => void; }): Promise>; export declare function evalExpression(expression: string, context: ProcessorContext, scriptContext?: Record): Promise; export declare function isAllowedKeyword(key: string): boolean; export declare const HTTPYAC_KEYWORDS: string[]; export declare const JAVASCRIPT_KEYWORDS: string[];