import { ElementRef, OnInit } from '@angular/core'; /** * @description * Rc auto focus directive - focus on element once its loaded * * @example * * */ export declare class RcAutofocusDirective implements OnInit { private el; /** * DOM element reference * @param ElementRef el */ constructor(el: ElementRef); ngOnInit(): void; }