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