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