import type { Bot, BotPatch } from '@mattermost/types/bots'; export declare function createBot(bot: Partial): import("../types/actions").ActionFuncAsync; export declare function patchBot(botUserId: string, botPatch: Partial): import("../types/actions").ActionFuncAsync; export declare function loadBot(botUserId: string): import("../types/actions").ActionFuncAsync; export declare function loadBots(page?: number, perPage?: number): import("../types/actions").ActionFuncAsync; export declare function disableBot(botUserId: string): import("../types/actions").ActionFuncAsync; export declare function enableBot(botUserId: string): import("../types/actions").ActionFuncAsync; export declare function assignBot(botUserId: string, newOwnerId: string): import("../types/actions").ActionFuncAsync;