import { PipeTransform } from '@angular/core'; /** * Transform a given string with spaces in another lowercased * and all spaces converted to underline ('_'). */ export declare class CssClassPipe implements PipeTransform { /** * * @param value The string to be converted */ transform(value: string): any; }