import type { IAnalyticsCatalogCreatedBy, IAnalyticsCatalogGenerateDescriptionRequest, IAnalyticsCatalogGenerateDescriptionResponse, IAnalyticsCatalogGenerateTitleRequest, IAnalyticsCatalogGenerateTitleResponse, IAnalyticsCatalogService, IAnalyticsCatalogTags, IAnalyticsCatalogTrendingObjects } from "@gooddata/sdk-backend-spi"; import type { TigerAuthenticatedCallGuard } from "../../../types/index.js"; /** * Analytics Catalog service. * @internal */ export declare class AnalyticsCatalogService implements IAnalyticsCatalogService { private readonly authCall; private readonly workspaceId; constructor(authCall: TigerAuthenticatedCallGuard, workspaceId: string); generateDescription(request: IAnalyticsCatalogGenerateDescriptionRequest): Promise; generateTitle(request: IAnalyticsCatalogGenerateTitleRequest): Promise; /** * Returns available tags assigned to any object in the Analytics catalog. */ getTags(): Promise; getCreatedBy(): Promise; getTrendingObjects(): Promise; } //# sourceMappingURL=AnalyticsCatalogService.d.ts.map