/**
 * System Operation Tools
 * Configuration validation, reload, restart, logs
 */
export declare const systemTools: ({
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            component?: undefined;
            limit?: undefined;
            level?: undefined;
        };
    };
} | {
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            component: {
                type: string;
                description: string;
                enum: string[];
            };
            limit?: undefined;
            level?: undefined;
        };
    };
} | {
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            limit: {
                type: string;
                description: string;
            };
            level: {
                type: string;
                description: string;
                enum: string[];
            };
            component?: undefined;
        };
    };
})[];
//# sourceMappingURL=system.d.ts.map