import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { CopilotHelp, CopilotHelpData, CopilotHelpPatch, CopilotHelpQuery, CopilotHelpService } from './help.class'; export type { CopilotHelp, CopilotHelpData, CopilotHelpPatch, CopilotHelpQuery }; export type CopilotHelpClientService = Pick>, (typeof copilotHelpMethods)[number]>; export declare const copilotHelpPath = "copilot/help"; export declare const copilotHelpMethods: Array; export declare const copilotHelpClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [copilotHelpPath]: CopilotHelpClientService; } }