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