import { AnyCommandContext } from '../CommandContext'; import { SuppressorType } from '../constants/SuppressorType'; import { Suppressor, SuppressorOption } from '../interfaces/Suppressor'; export declare class ChannelSuppressor implements Suppressor { suppressor: SuppressorType; suppress(ctx: AnyCommandContext, option: SuppressorOption, channelIds?: Array): Promise; }