import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ prompt: z.ZodOptional; input: z.ZodOptional; output: z.ZodDefault; limit: z.ZodDefault; concurrency: z.ZodDefault; }, "strip", z.ZodTypeAny, { output: string; limit: number; concurrency: number; input?: string | undefined; prompt?: string | undefined; }, { input?: string | undefined; output?: string | undefined; limit?: number | undefined; concurrency?: number | undefined; prompt?: string | undefined; }>; export declare class TTWFGenerateCommand extends BaseCommand> { run(): Promise; catch(error: Error): Promise; } export {};