import { IKeyObjectValue } from "../type"; interface IRunResult { status: number; errors: any[]; requestList?: any[]; cacheData?: any; options?: any; } export declare function runScript(strJs: string, options: IKeyObjectValue, isNew: boolean): Promise; export {};