import { OvokClient } from "../../ovok-client"; /** * Executes a bot by identifier using the Ovok API * Implementation based on https://ovok-internal.readme.io/reference/botscontroller_execbotbyidentifierpost * * @param identifier Bot identifier in format "system|value" (e.g. "https://example.com|get-users") * @param parameters Additional parameters to pass to the bot * @returns Promise with the bot execution result */ export declare function executeBot(this: OvokClient, identifier: string, parameters: Record): Promise>;