import { Service } from '../../../providers/service/service'; import { BeforeUpdateQueryResult } from '../../../models/connector'; /** * Service for managing connectors. */ export declare class ConnectorsService implements Service { private readonly connectorsRestService; /** * Checks connector status. * @param query Optional query to check if the connector is enabled for. If not provided, it will check if the * connector is enabled in general. * @returns Promise resolving with the connector status. */ checkConnector(query?: string): Promise; }