import type { JsonObject } from "@elgato/utils";
import type { Language } from "@elgato/utils/i18n";
import type { Language as SupportedLanguage } from "../api/i18n.js";
/**
 * Loads a locale from the file system.
 * @param language Language to load.
 * @returns Contents of the locale.
 */
export declare function fileSystemLocaleProvider(language: Language<SupportedLanguage>): JsonObject | null;
