import { InjectionToken } from '@angular/core'; import MessageFormat, { MessageFormatOptions } from '@messageformat/core'; export declare const TRANSLOCO_MESSAGE_FORMAT_CONFIG: InjectionToken; export type MFLocale = ConstructorParameters[0]; export interface MessageformatConfig extends MessageFormatOptions<'string'> { locales?: MFLocale; enableCache?: boolean; }