import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike } from '../../types/index.js';
/**
 * Set whether a chat has content protection (i.e. forwarding messages is disabled)
 *
 * @param chatId  Chat ID or username
 * @param enabled  Whether content protection should be enabled
 */
export declare function toggleContentProtection(client: ITelegramClient, chatId: InputPeerLike, enabled?: boolean, params?: {
    /** If this method was called in response to the other party enabling content protection, ID of that message */
    requestMsgId?: number;
}): Promise<void>;
