import { type Language } from "../api";
import { type JsonObject } from "../common/json";
/**
 * Loads a locale from the file system.
 * @param language Language to load.
 * @returns Contents of the locale.
 */
export declare function fileSystemLocaleProvider(language: Language): JsonObject | null;
