import type { LocaleProperties } from './getLocaleProperties'; export type CustomMapping = Record>; export declare const getCustomProperty: (customMapping: CustomMapping, locale: string, property: keyof LocaleProperties) => string | undefined; export declare const getCustomLocaleCode: (customMapping: CustomMapping | undefined, locale: string) => string | undefined;