import { z } from "zod"; export declare const queryCommand: import("../lib/command").CommandDefinition<{ readonly sql: { readonly type: "string"; readonly short: "q"; }; readonly file: { readonly type: "string"; readonly short: "f"; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; file: z.ZodOptional; sql: z.ZodOptional; }, z.core.$strict>> & import("../lib/command").Command; //# sourceMappingURL=query.d.ts.map