import { ErrorUnion, OkUnion } from '../outputs'; /** * Changes the value of the default disable_notification parameter, used when a message * is sent to a chat * @param {Object} params * @param {number} [params.chatId] - Chat identifier * @param {boolean} [params.defaultDisableNotification] - New value of default_disable_notification * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type ToggleChatDefaultDisableNotificationMethod = (params: ToggleChatDefaultDisableNotificationParams, state?: Record) => Promise; export interface ToggleChatDefaultDisableNotificationParams { /** Chat identifier */ chatId?: number; /** New value of default_disable_notification */ defaultDisableNotification?: boolean; }