import { type ILlmProvidersQuery, type IOrganizationLlmProvidersService } from "@gooddata/sdk-backend-spi"; import { type ILlmProvider, type LlmProviderListModelsResults, type LlmProviderPatch, type LlmProviderTestResults } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../types/index.js"; export declare class OrganizationLlmProvidersService implements IOrganizationLlmProvidersService { readonly authCall: TigerAuthenticatedCallGuard; constructor(authCall: TigerAuthenticatedCallGuard); getCount(): Promise; getProvidersQuery(): ILlmProvidersQuery; getLlmProvider(id: string): Promise; createLlmProvider(provider: ILlmProvider): Promise; updateLlmProvider(provider: ILlmProvider): Promise; patchLlmProvider(provider: LlmProviderPatch): Promise; deleteLlmProvider(id: string): Promise; testLlmProvider(provider: Partial): Promise; listLlmProviderModels(providerOrId: string | Partial): Promise; } //# sourceMappingURL=llmProviders.d.ts.map