export type LocalizedObject = { localeCode: string; value: any; }; /** * Get localized value based on the given locale code * If the locale code is not given and the function is called within a request context, it will get the current locale code */ export declare function getLocalized(values: LocalizedObject[], localeCode?: string): any; //# sourceMappingURL=get-localized.d.ts.map