import { ITelegramClient } from '../../client.types.js';
import { InputMessageId, Poll } from '../../types/index.js';
/**
 * Close a poll sent by you.
 *
 * Once closed, poll can't be re-opened, and nobody
 * will be able to vote in it
 */
export declare function closePoll(client: ITelegramClient, params: InputMessageId & {
    /**
     * Whether to dispatch the edit message event
     * to the client's update handler.
     */
    shouldDispatch?: true;
}): Promise<Poll>;
