// Type definitions for i18n/$L type Omit = Pick>; type Merge = Omit> & N; /** * Maps a string or key/value object to a translated string for the current locale. */ export function toIString(str: string | object): IString; /** * Maps a string or key/value object to a translated string for the current locale. */ export function $L(str: string | object): string; export default $L;