import { MlsDateTimeLocalization, Locale } from '@softeq/mls'; import { Hash, Maybe } from '@softeq/types'; import { ValidationErrors } from '@angular/forms'; export declare class RiDateTimeLocalization implements MlsDateTimeLocalization { private locale; private formats; constructor(locale: Locale, formats: Hash); format(value: Date, format: string): string; parse(str: string, inputFormat: string): Date; validate(value: Date): Maybe; validateFormat(value: string, inputFormat: string): Maybe; }