export declare const sysopsTools: { listOpenPorts: import("ai").Tool, { ports: any; error?: never; rawError?: never; } | { error: string; rawError: any; ports?: never; }>; pingHost: import("ai").Tool<{ host: string; }, { host: string; success: boolean; output: string; error?: never; rawError?: never; } | { host: string; success: boolean; error: string; rawError: any; output?: never; }>; traceRoute: import("ai").Tool<{ host: string; }, { host: string; output: string; error?: never; rawError?: never; } | { host: string; error: string; rawError: any; output?: never; }>; getDatabaseSchema: import("ai").Tool<{ databasePath: string; }, { error: string; databasePath?: never; method?: never; schema?: never; tables?: never; } | { databasePath: string; method: string; schema: string; error?: never; tables?: never; } | { databasePath: string; method: string; schema: any; tables: any; error?: never; }>; runDatabaseQuery: import("ai").Tool<{ databasePath: string; sql: string; }, any>; listSystemProcesses: import("ai").Tool<{ sortBy: "memory" | "cpu" | "pid"; limit: number; filterName?: string | undefined; }, { processes: { pid: number; name: string; cpu: number; memory: number; }[]; error?: never; rawError?: never; } | { error: string; rawError: any; processes?: never; }>; killSystemProcess: import("ai").Tool<{ force: boolean; pid?: number | undefined; name?: string | undefined; port?: number | undefined; }, { error: string; success?: never; killedPids?: never; name?: never; rawError?: never; } | { success: boolean; error: string; killedPids?: never; name?: never; rawError?: never; } | { success: boolean; killedPids: number[]; error?: never; name?: never; rawError?: never; } | { success: boolean; name: string; error?: never; killedPids?: never; rawError?: never; } | { success: boolean; error: string; rawError: any; killedPids?: never; name?: never; }>; getSystemMetrics: import("ai").Tool, { success: boolean; metrics: { os: { name: string; platform: NodeJS.Platform; release: string; architecture: NodeJS.Architecture; uptimeSeconds: number; uptimeHours: number; }; cpu: { activeUtilizationPercent: number; cores: number; model: string; }; memory: { totalGb: number; freeGb: number; usedGb: number; utilizationPercent: number; }; disk: { workspacePath: string; totalGb: number; freeGb: number; usedGb: number; utilizationPercent: number; }; }; error?: never; rawError?: never; } | { success: boolean; error: string; rawError: any; metrics?: never; }>; }; //# sourceMappingURL=sysops.tool.d.ts.map