import { type IFiles } from "./files.js"; import type { TranslationFile } from "./translate.interface.js"; export declare class FolderFiles implements IFiles { folderPath: string; sourceLocale: string; targetLocales: Array; fileName: string; private formatOverride?; constructor(filePath: string, formatOverride?: string); getDetectedFormat(): string | undefined; getFormatOverride(): string | undefined; private getTargetLocales; private createFileName; loadJsonFromLocale(locale: string): Promise; saveJsonToLocale(locale: string, file: TranslationFile): void; }