import { z } from "zod"; export declare const CreateTable: z.ZodObject<{ command: z.ZodLiteral<"CREATE TABLE">; language: z.ZodLiteral<"DDL">; operation: z.ZodLiteral<"schema">; }, "strict", z.ZodTypeAny, { command: "CREATE TABLE"; language: "DDL"; operation: "schema"; }, { command: "CREATE TABLE"; language: "DDL"; operation: "schema"; }>; export type CreateTable = z.infer; //# sourceMappingURL=createTable.d.ts.map