import { RetortScriptImport } from "./conversation"; import { Retort } from "./retort"; type RunOptions = { shouldSaveToLog?: boolean; shouldUseCache?: boolean; }; export declare function run(promiseOrRetort: Promise> | Retort | RetortScriptImport, params?: any, options?: RunOptions): Promise; export {};