import { z } from 'zod';
import type { ToolDefinition } from '../types/index.js';
export declare const reviewSchema: z.ZodObject<{
    target: z.ZodString;
    focus: z.ZodOptional<z.ZodArray<z.ZodEnum<["security", "performance", "readability", "best-practices", "architecture"]>, "many">>;
    languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
    model: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    target: string;
    model?: string | undefined;
    languages?: string[] | undefined;
    focus?: ("architecture" | "security" | "performance" | "readability" | "best-practices")[] | undefined;
}, {
    target: string;
    model?: string | undefined;
    languages?: string[] | undefined;
    focus?: ("architecture" | "security" | "performance" | "readability" | "best-practices")[] | undefined;
}>;
export declare const codexReviewTool: ToolDefinition<z.infer<typeof reviewSchema>>;
//# sourceMappingURL=review.tool.d.ts.map