import type { TranslationOutput } from "./types"; export declare function translate(options: { path: string; context?: string; baseLocale?: string; tone?: string; apiUrl: string; apiKey?: string; model?: string; updateAll?: boolean; stats?: boolean; onProgress?: (progress: { done: number; total: number; }) => void; }): Promise;