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