import { z } from "zod";
export declare const ArtifactCommandSchema: {
    command: z.ZodEnum<{
        create: "create";
        update: "update";
        rewrite: "rewrite";
    }>;
    id: z.ZodString;
    title: z.ZodString;
    type: z.ZodString;
    language: z.ZodString;
    content: z.ZodString;
    old_str: z.ZodString;
    new_str: z.ZodString;
};
export type ArtifactCommand = z.infer<z.ZodObject<typeof ArtifactCommandSchema>>;
