import { AnyCommandContext } from '../CommandContext';
import { SuppressorType } from '../constants/SuppressorType';
import { Suppressor, SuppressorOption } from '../interfaces/Suppressor';
export declare class GuildSuppressor implements Suppressor {
    suppressor: SuppressorType;
    suppress(ctx: AnyCommandContext, option: SuppressorOption, guildIds?: Array<string>): Promise<string | false>;
}
