import { ResolvedFiles, TransformFiles } from '../../types/index.js'; import { FileMapping } from '../../types/files.js'; /** * Creates a mapping between source files and their translated counterparts for each locale * @param filePaths - Resolved file paths for different file types * @param placeholderPaths - Placeholder paths for translated files * @param transformPaths - Transform paths for file naming * @param locales - List of locales to create a mapping for * @returns A mapping between source files and their translated counterparts for each locale, in the form of relative paths */ export declare function createFileMapping(filePaths: ResolvedFiles, placeholderPaths: ResolvedFiles, transformPaths: TransformFiles, targetLocales: string[], defaultLocale: string): FileMapping;