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