// importar el decorador de angular/core
Import (ViewChild) from '@angular/core'
// Uso del decorador @ViewChild('aqui va lo que hayas definido en el html con el #') variable: ElementRef
@ViewChild('imgElement') imgElement: ElementRef;
algunaFuncion(){
// Acceder al nativeElement del child
console.log(imgElement.nativeElement);
}