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