import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { CopilotRecommendations, CopilotRecommendationsData, CopilotRecommendationsPatch, CopilotRecommendationsQuery, CopilotRecommendationsService } from './recommendations.class'; export type { CopilotRecommendations, CopilotRecommendationsData, CopilotRecommendationsPatch, CopilotRecommendationsQuery }; export type CopilotRecommendationsClientService = Pick>, (typeof copilotRecommendationsMethods)[number]>; export declare const copilotRecommendationsPath = "copilot/recommendations"; export declare const copilotRecommendationsMethods: Array; export declare const copilotRecommendationsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [copilotRecommendationsPath]: CopilotRecommendationsClientService; } }