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