import { type IAgentsQuery, type IOrganizationAgentsService } from "@gooddata/sdk-backend-spi"; import { type IAgent, type IAgentPatch, type IAgentSkill, type ObjRef } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../types/index.js"; export declare class OrganizationAgentsService implements IOrganizationAgentsService { readonly authCall: TigerAuthenticatedCallGuard; constructor(authCall: TigerAuthenticatedCallGuard); getAvailableSkills(): Promise; getAgentsQuery(): IAgentsQuery; getAgent(ref: ObjRef): Promise; createAgent(agent: IAgent): Promise; updateAgent(agent: IAgent): Promise; patchAgent(agent: IAgentPatch): Promise; deleteAgent(ref: ObjRef): Promise; } //# sourceMappingURL=agents.d.ts.map