import type { Application } from '../../../declarations'; import { CopilotHelpService } from './help.class'; import { copilotHelpPath } from './help.shared'; export * from './help.class'; export * from './help.schema'; export declare const copilotHelp: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [copilotHelpPath]: CopilotHelpService; } }