import { z } from 'zod/v4'; import { TranslationsServiceClient } from '../TranslationsServiceClient'; export declare const downloadCommandOptionsSchema: z.ZodObject<{ outputDir: z.ZodString; languages: z.ZodArray; }, z.core.$strip>; export type DownloadCommandOptions = z.infer & { translationsServiceClient: TranslationsServiceClient; }; export declare function download({ outputDir, languages, translationsServiceClient }: DownloadCommandOptions): Promise; //# sourceMappingURL=download.d.ts.map