import type * as client from '@botpress/client'; import type { BotSpecificClient } from '../../bot'; import type { BasePlugin, PluginRuntimeProps } from '../common'; import type { ActionableConversation, ConversationFinder } from './types'; export declare const proxyConversations: (props: { client: BotSpecificClient | client.Client; plugin?: PluginRuntimeProps; }) => ConversationFinder; export declare const proxyConversation: (props: { client: BotSpecificClient | client.Client; plugin?: PluginRuntimeProps; conversation: client.Conversation; }) => ActionableConversation;