import type { Application } from '../../../declarations'; declare class AutotuneComputeService { app: Application; constructor(app: Application); find(): Promise<{ nodes: never[]; jobs: never[]; allocations: never[]; cluster: null; } | { nodes: any[] | never[]; jobs: any[] | never[]; allocations: any[] | never[]; cluster: { leader: string; servers: any; version: any; region: any; datacenter: any; raft: { appliedIndex: any; lastLogIndex: any; state: any; }; broker: { totalReady: number; totalBlocked: number; totalWaiting: number; }; heartbeatsActive: number; }; }>; } export declare const autotuneCompute: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { 'autotune/compute': AutotuneComputeService; } } export {};