import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; import type { CopilotHelp, CopilotHelpData, CopilotHelpPatch, CopilotHelpQuery } from './help.schema'; export type { CopilotHelp, CopilotHelpData, CopilotHelpPatch, CopilotHelpQuery }; export interface CopilotHelpServiceOptions { app: Application; } export interface CopilotHelpParams extends Params { } export declare class CopilotHelpService implements ServiceInterface { options: CopilotHelpServiceOptions; constructor(options: CopilotHelpServiceOptions); create(data: CopilotHelpData, params?: ServiceParams): Promise; create(data: CopilotHelpData[], params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };