import { QUERY_RESULTS, Repository } from "./index"; import { Logger } from "../utils/logger"; import { IntegrationEntity } from "../data/Integration"; import { AuthenticationService } from "../service/authenticationService"; interface Args { locale?: string; account?: string; } export declare class IntegrationsRepository extends Repository { private integrationsService; constructor(authenticationService: AuthenticationService, baseURL: string, logger?: Logger); getIntegrations(bearer: string, locale: string, account: string): Promise>; protected localBulkDelete(items: IntegrationEntity[]): Promise; protected localBulkSave(args: Args, items: IntegrationEntity[]): Promise; protected localDelete(args: Args): Promise; protected localGet(args: Args): Promise; protected localList(args: Args): Promise; protected remoteCreate(bearer: string, args: Args, item: IntegrationEntity): Promise; protected remoteDelete(bearer: string, args: Args): Promise; protected remoteGet(bearer: string, args: Args): Promise; protected remoteList(bearer: string, args: Args): Promise; protected remoteUpdate(bearer: string, args: Args, item: IntegrationEntity): Promise; } export {};