import { PipeTransform } from '@angular/core';
import { L10nDateTimeFormatOptions } from '../models/types';
import { L10nAsyncPipe } from '../models/l10n-async-pipe';
import { L10nIntlService } from '../services/l10n-intl.service';
import * as i0 from "@angular/core";
export declare class L10nDatePipe implements PipeTransform {
    protected intl: L10nIntlService;
    constructor(intl: L10nIntlService);
    transform(value: any, language: string, options?: L10nDateTimeFormatOptions, timezone?: string): string | null;
    static ɵfac: i0.ɵɵFactoryDeclaration<L10nDatePipe, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<L10nDatePipe, "l10nDate", true>;
}
export declare class L10nDateAsyncPipe extends L10nAsyncPipe implements PipeTransform {
    protected intl: L10nIntlService;
    constructor(intl: L10nIntlService);
    transform(value: any, options?: L10nDateTimeFormatOptions, timezone?: string, language?: string): string | null;
    static ɵfac: i0.ɵɵFactoryDeclaration<L10nDateAsyncPipe, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<L10nDateAsyncPipe, "l10nDateAsync", true>;
}
