import { PipeTransform } from '@angular/core'; /** * Truncates a long string after N characters, then appends an ellipsis. * By default, N is 100. * * * {{'very_long_URL' | libEllipsize:64 | libBreakable}} * * */ export declare class EllipsizePipe implements PipeTransform { transform(s: string, max?: number, dflt?: string): string; }