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