/**
 * SIS 4.0 Reality Spawner Tool
 * Spawn entire development universes from concepts
 */
import { z } from 'zod';
export declare const realitySpawnerTool: {
    name: string;
    description: string;
    parameters: z.ZodObject<{
        concept: z.ZodString;
        realityType: z.ZodDefault<z.ZodEnum<["microservice", "monolith", "serverless", "quantum"]>>;
        features: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
        preventBugs: z.ZodDefault<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        concept: string;
        realityType: "quantum" | "microservice" | "monolith" | "serverless";
        preventBugs: boolean;
        features?: string[] | undefined;
    }, {
        concept: string;
        realityType?: "quantum" | "microservice" | "monolith" | "serverless" | undefined;
        features?: string[] | undefined;
        preventBugs?: boolean | undefined;
    }>;
    execute: (args: any) => Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=reality-spawner.d.ts.map