import type { RecommendationSearchAPI } from '../models/RecommendationSearchAPI'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class RecommendationsService { /** * API endpoint that returns a search api url prepopulated with context data * See http://localhost:8000/api/schema/swagger-ui/#/recommendations * @returns RecommendationSearchAPI * @throws ApiError */ static recommendationsOrgsUsersRetrieve({ org, userId, }: { org: string; }): CancelablePromise; }