import z from 'zod'; import { Command } from 'commander'; interface CommandBuilderOption { flags: string; description: string; } export declare const buildCommandFromSchema: (name: string, description: string, schema: z.ZodObject | z.ZodUnion, args: Record, options: Record) => Command; export {};