import { Context } from '..'; /** * Pre-load a locale's data into the cache. * Must be called (and awaited) before the first render * so that synchronous locale() calls return data. */ export declare function loadLocale(lang: string): Promise; declare function locale(ctx: Context): any; export { locale };