import { ITelegramClient } from '../../client.types.js';
import { ChatInviteLink, InputPeerLike } from '../../types/index.js';
/**
 * Approve or decline multiple join requests to a chat.
 */
export declare function hideAllJoinRequests(client: ITelegramClient, params: {
    /** Chat/channel ID */
    chatId: InputPeerLike;
    /** Whether to approve or decline the join requests */
    action: 'approve' | 'decline';
    /** Invite link to target */
    link?: string | ChatInviteLink;
}): Promise<void>;
