import type * as client from '@botpress/client'; import type { BotSpecificClient } from '../../bot'; import type { BasePlugin } from '../common'; import type { UserFinder, ActionableUser } from './types'; export declare const proxyUsers: (props: { client: BotSpecificClient | client.Client; pluginAlias?: string; }) => UserFinder; export declare const proxyUser: (props: { client: BotSpecificClient | client.Client; conversationId?: TConversationId; pluginAlias?: string; user: client.User; }) => ActionableUser;