import type * as client from '@botpress/client'; import type { BotSpecificClient } from '../../bot'; import type { BasePlugin, PluginRuntimeProps } from '../common'; import type { ActionableMessage, AnyPluginMessage, MessageFinder } from './types'; export declare const proxyMessages: (props: { client: BotSpecificClient | client.Client; plugin?: PluginRuntimeProps; }) => MessageFinder; export declare const proxyMessage: = AnyPluginMessage>(props: { client: BotSpecificClient | client.Client; plugin?: PluginRuntimeProps; message: TMessage; }) => ActionableMessage;