import { BotGuardConfig } from '../config'; import { ProtectAllArgs } from './mcpGateway'; export interface AutoProtectArgs extends ProtectAllArgs { install?: string; uninstall?: string; status?: string; intervalMinutes?: string; onLogon?: string; } export declare function autoProtectCommand(args: AutoProtectArgs, config: BotGuardConfig): Promise;