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