import { InjectionToken } from '@angular/core';
export interface I18NInterface {
    locale: string;
    translation: Record<string, string>;
}
export declare const I18NInterfaceToken: InjectionToken<I18NInterface>;
