import { QUERY_RESULTS, QUERY_TYPE, Repository } from './index'; import { AuthenticationService } from "../service/authenticationService"; import { Logger } from "../utils/logger"; import { ConnectorEntity } from "../data/Connector"; interface Args { organisation: string; locale?: string; } export declare class ConnectorsRepository extends Repository { private connectorsService; constructor(authenticationService: AuthenticationService, baseURL: string, logger?: Logger); getConnectors(bearer: string, organisation: string, locale: string, mode?: QUERY_TYPE): Promise>; protected remoteList(bearer: string, args: Args): Promise; protected remoteGet(bearer: string, args: Args): Promise; protected remoteCreate(bearer: string, args: Args, item: ConnectorEntity): Promise; protected remoteUpdate(bearer: string, args: Args, item: ConnectorEntity): Promise; protected remoteDelete(bearer: string, args: Args): Promise; protected localList(args: Args): Promise; protected localGet(args: Args): Promise; protected localBulkSave(args: Args, items: ConnectorEntity[]): Promise; protected localDelete(args: Args): Promise; protected localBulkDelete(items: ConnectorEntity[]): Promise; private checkNullable; } export {};