import { PipeTransform } from '@angular/core';
import { LocaleService } from '../services/locale.service';
import { DateTimeOptions } from '../models/types';
export declare class L10nDatePipe implements PipeTransform {
    protected locale: LocaleService;
    constructor(locale: LocaleService);
    transform(value: any, defaultLocale: string, format?: string | DateTimeOptions, timezone?: string): string | null;
}
