import type { Application } from '../../declarations'; import { StrategiesService } from './strategies.class'; import { strategiesPath } from './strategies.shared'; export * from './strategies.class'; export * from './strategies.schema'; export declare const strategies: (app: Application) => void; export declare const hooks: any; declare module '../../declarations' { interface ServiceTypes { [strategiesPath]: StrategiesService; } }