export declare const mode: string; export type Properties = { [locale: string]: { [key: string]: any; }; }; export declare const getLocalizedValue: ({ key, locale, data }: { key: string; locale: string; data?: Properties | undefined; }) => any;