import type { Locale } from "java.util"; import type { RenderContext } from "org.jahia.services.render"; /** * Returns the locales available on the site, as a record of language code (e.g. en_US) to locale * object. * * If not provided, the `renderContext` is taken from the current server context. */ export declare function getSiteLocales({ renderContext }?: { renderContext: RenderContext; }): Record;