import { ElementRef } from '@angular/core';
import { KitAnchor } from './meta';
/**
* Returns a reference to `elementRef` of any element.
*
* If you define a template reference on the element that Angular views as a host element of the component, you will
* get a reference to the component instance. `kitAnchor` resolves the problem.
*
*
* ### Usage
*
* ```html
*
*
* ```
*/
export declare class KitAnchorDirective implements KitAnchor {
private _elementRef;
/**
* @internal
*/
kitAnchor: void;
constructor(_elementRef: ElementRef);
/**
* Get reference to anchored element.
*/
readonly elementRef: ElementRef;
/**
* Get anchored html-element.
*/
readonly nativeEl: any;
}