import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { CopilotConcerns, CopilotConcernsData, CopilotConcernsPatch, CopilotConcernsQuery, CopilotConcernsService } from './concerns.class'; export type { CopilotConcerns, CopilotConcernsData, CopilotConcernsPatch, CopilotConcernsQuery }; export type CopilotConcernsClientService = Pick>, (typeof copilotConcernsMethods)[number]>; export declare const copilotConcernsPath = "copilot/concerns"; export declare const copilotConcernsMethods: Array; export declare const copilotConcernsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [copilotConcernsPath]: CopilotConcernsClientService; } }