import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { CopilotDecisions, CopilotDecisionsData, CopilotDecisionsPatch, CopilotDecisionsQuery, CopilotDecisionsService } from './decisions.class'; export type { CopilotDecisions, CopilotDecisionsData, CopilotDecisionsPatch, CopilotDecisionsQuery }; export type CopilotDecisionsClientService = Pick>, (typeof copilotDecisionsMethods)[number]>; export declare const copilotDecisionsPath = "copilot/decisions"; export declare const copilotDecisionsMethods: Array; export declare const copilotDecisionsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [copilotDecisionsPath]: CopilotDecisionsClientService; } }