import { BotContext } from './models';
interface RunPluginArgs {
botContext: BotContext;
mode: PluginMode;
response?: string | null;
}
type PluginMode = 'pre' | 'post';
export declare function runPlugins({ botContext, mode, response, }: RunPluginArgs): Promise<void>;
export {};