import { ServiceContainer } from '../index.js';
export declare const systemHealthTool: {
    definition: {
        name: string;
        description: string;
        inputSchema: {
            type: string;
            properties: {
                detailed: {
                    type: string;
                    description: string;
                };
            };
            required: never[];
        };
    };
    execute(input: unknown, services: ServiceContainer): Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=SystemHealthTool.d.ts.map