import { type ILlmEndpointsQuery, type IOrganizationLlmEndpointsService } from "@gooddata/sdk-backend-spi"; import { type ILlmEndpointOpenAI, type LlmEndpointOpenAIPatch, type LlmEndpointTestResults } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../types/index.js"; export declare class OrganizationLlmEndpointsService implements IOrganizationLlmEndpointsService { readonly authCall: TigerAuthenticatedCallGuard; constructor(authCall: TigerAuthenticatedCallGuard); getCount(): Promise; getEndpointsQuery(): ILlmEndpointsQuery; getLlmEndpoint(id: string): Promise; createLlmEndpoint(endpoint: ILlmEndpointOpenAI, token: string): Promise; updateLlmEndpoint(endpoint: ILlmEndpointOpenAI, token: string): Promise; patchLlmEndpoint(endpoint: LlmEndpointOpenAIPatch, token?: string): Promise; deleteLlmEndpoint(id: string): Promise; testLlmEndpoint(endpoint: Partial, token?: string): Promise; } //# sourceMappingURL=llmEndpoints.d.ts.map