import { PipeTransform } from '@angular/core'; /** * Returns only first letter of string */ export declare class FirstLetterPipe implements PipeTransform { /** * Transform * * @param value: any * @param args: any */ transform(value: any, args?: any): any; } //# sourceMappingURL=first-letter.pipe.d.ts.map