import * as i0 from '@angular/core'; import { InjectionToken, PipeTransform } from '@angular/core'; type SelectId = (entity: object) => string | number; declare const SELECT_ID: InjectionToken; declare const defaultSelectId: SelectId; declare class SelectIdPipe implements PipeTransform { protected selectId: SelectId; constructor(selectId: SelectId); transform(entity: any): string | number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; } export { SELECT_ID, SelectIdPipe, defaultSelectId }; export type { SelectId };