import { PipeTransform } from '@angular/core';
import { LocaleService } from '../services/locale.service';
export declare class LocalizedPipe implements PipeTransform {
private localeService;
constructor(localeService: LocaleService);
transform(value: string): string | null;
}