import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class MonitorIntelService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); /** * @returns void * @throws ApiError */ groupIntelDetections(): CancelablePromise; /** * @returns void * @throws ApiError */ getAllIntelDetections(): CancelablePromise; /** * @returns void * @throws ApiError */ updateFlowCapabilities(): CancelablePromise; /** * search everywhere. * @returns void * @throws ApiError */ search(): CancelablePromise; /** * @returns void * @throws ApiError */ ai(): CancelablePromise; /** * @returns void * @throws ApiError */ startExploration(): CancelablePromise; /** * @returns void * @throws ApiError */ updateExploration(): CancelablePromise; /** * @returns void * @throws ApiError */ getIntel(): CancelablePromise; /** * @returns void * @throws ApiError */ getDarkweb(): CancelablePromise; }