/** * Enhanced translation process flow utilities * Organizes the step-by-step translation resolution process with i18n features */ import type { TranslationRequest } from '../types/translation.types.js'; /** * ✅ Enhanced: Parse and prepare translation request with cache keys * This is the entry point that organizes all the parsing logic */ export declare function prepareTranslationRequest(key: string, currentLocale: string, defaultValueOrParams?: string | Record, paramsOrDefaultValue?: Record | string, defaultNamespace?: string): TranslationRequest; /** * Parse flexible translation parameters */ export declare function parseTranslationParams(secondParam?: string | Record, thirdParam?: Record | string): { defaultValue?: string; params?: Record; }; //# sourceMappingURL=translation-flow.d.ts.map