import { Service } from '../../../providers/service/service'; import { OperationStatusSummary } from '../../../models/monitoring/operation-status-summary'; /** * Service class for handling operations-related functionality. */ export declare class MonitoringService implements Service { private readonly monitoringRestService; /** * Retrieves the status summary of operations. * * @returns {Promise} A Promise that resolves to an OperationStatusSummary object, * representing the current status of operations. */ getOperations(repositoryId: string): Promise; /** * Deletes a specific query for a given repository. * @param queryId - The unique identifier of the query to be deleted. * @param repositoryId - The unique identifier of the repository from which to delete the query. * @returns A Promise that resolves when the query has been successfully deleted. */ deleteQuery(queryId: string, repositoryId: string): Promise; }