import { type IGetAutomationsQueryOptions, type IOrganizationAutomationService, type IOrganizationAutomationsQuery } from "@gooddata/sdk-backend-spi"; import { type TigerAuthenticatedCallGuard } from "../../../types/index.js"; /** * Tiger implementation of organization automations service for centralized automation management. * * @alpha */ export declare class TigerOrganizationAutomationService implements IOrganizationAutomationService { private readonly authCall; constructor(authCall: TigerAuthenticatedCallGuard); getAutomationsQuery(options?: IGetAutomationsQueryOptions): IOrganizationAutomationsQuery; deleteAutomation(id: string, workspaceId: string): Promise; deleteAutomations(automations: Array<{ id: string; workspaceId: string; }>): Promise; pauseAutomation(id: string, workspaceId: string): Promise; pauseAutomations(automations: Array<{ id: string; workspaceId: string; }>): Promise; resumeAutomation(id: string, workspaceId: string): Promise; resumeAutomations(automations: Array<{ id: string; workspaceId: string; }>): Promise; unsubscribeAutomation(id: string, workspaceId: string): Promise; unsubscribeAutomations(automations: Array<{ id: string; workspaceId: string; }>): Promise; } //# sourceMappingURL=index.d.ts.map