export declare function initializeState({ translationsPath, baseLocale, generateKeys, }: { translationsPath: string; baseLocale: string; generateKeys?: boolean; }): Promise; export declare function syncState(): Promise; export declare function checkStatus(): Promise; export declare function saveKeys({ translationKeysPath, prettierConfigPath, }: { translationKeysPath?: string; prettierConfigPath?: string; }): Promise; export declare function saveAiTranslations({ prettierConfigPath, context, tone, apiUrl, apiKey, apiModel, updateAll, stats, onProgress, }: { prettierConfigPath?: string; context?: string; tone?: string; apiUrl: string; apiKey: string; onProgress?: (progress: { done: number; total: number; }) => void; apiModel?: string; updateAll?: boolean; stats?: boolean; }): Promise;