import { PipeTransform } from '@angular/core'; export declare class TruncatePipe implements PipeTransform { /** * @param value The truncatable string. * @param limit number of the displayed characters. * @default 100 */ transform(value: string, limit?: number): string; }