/** * Object containing all the locale resources, with the locale names as keys and the corresponding * strings as values. * @type {Record>} */ export const strings: Record>; export function initLocales({ fallbackLocale, initialLocale }?: { fallbackLocale?: string | undefined; initialLocale?: string | undefined; }): void;