import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike } from '../../types/index.js';
/**
 * Give or revoke permission for a bot to update emoji status for your account
 */
export declare function toggleEmojiStatusPermission(client: ITelegramClient, params: {
    /** Bot to which the permission should be granted/revoked */
    userId: InputPeerLike;
    /** Whether to grant or revoke permission */
    allow: boolean;
}): Promise<void>;
