/** * @license * Copyright 2018 Google LLC * SPDX-License-Identifier: Apache-2.0 */ type Locale = import('../lhr/settings.js').Locale; declare module 'lookup-closest-locale' { function lookupClosestLocale(locale: string[]|string|undefined, available: Record): Locale|undefined; export = lookupClosestLocale; }