import { Api } from "./deps.js";
import { Action, ChatId, Signal } from "./types.js";
export declare function createChatActionsController(api: Api): {
    startSending(chatId: ChatId, actions: Action[], messageThreadId?: number, signal?: Signal): void;
    stopSending(chatId: ChatId, messageThreadId?: number): void;
};
export type ChatActionsController = ReturnType<typeof createChatActionsController>;
