import { PipeTransform } from'@angular/core';
/**
* A PipeTransform to convert the given string in an id-like string using Core Tracker makeId
*/exportdeclareclassMakeIdimplementsPipeTransform {
transform(input: string | number, normalize?: boolean): string | null;
}