/**
 * SIS 4.0 Temporal Debugger Tool
 * Debug future bugs before they exist
 */
import { z } from 'zod';
export declare const temporalDebuggerTool: {
    name: string;
    description: string;
    parameters: z.ZodObject<{
        operation: z.ZodEnum<["scan", "prevent", "rollback", "verify"]>;
        timeframe: z.ZodDefault<z.ZodString>;
        bugId: z.ZodOptional<z.ZodString>;
        autoFix: z.ZodDefault<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        operation: "scan" | "prevent" | "rollback" | "verify";
        timeframe: string;
        autoFix: boolean;
        bugId?: string | undefined;
    }, {
        operation: "scan" | "prevent" | "rollback" | "verify";
        timeframe?: string | undefined;
        bugId?: string | undefined;
        autoFix?: boolean | undefined;
    }>;
    execute: (args: any) => Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=temporal-debugger.d.ts.map