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