export interface LocalScanArgs { type?: string; endpoint?: string; method?: string; format?: string; inputField?: string; outputField?: string; authType?: string; username?: string; password?: string; token?: string; apiKeyHeader?: string; apiKey?: string; mcpUrl?: string; mcpTransport?: string; mcpAuthType?: string; mcpUsername?: string; mcpPassword?: string; mcpToken?: string; mcpApiKeyHeader?: string; mcpApiKey?: string; mcpCommand?: string; mcpArgs?: string; mcpTool?: string; mcpToolArgs?: string; ragPath?: string; ragUrl?: string; attackCount?: string; progress?: string; failThreshold?: string; outputFormat?: string; scanMode?: string; focus?: string; shieldId?: string; shieldKey?: string; configShieldId?: string; configShieldKey?: string; configApiUrl?: string; apiUrl?: string; open?: string; noOpen?: string; openUi?: string; } export declare function localScanCommand(args: LocalScanArgs): Promise;