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