import { ElementRef, OnDestroy, OnInit } from '@angular/core';
export declare class PositionDirective implements OnDestroy, OnInit {
private element;
target: string;
private position;
constructor(element: ElementRef);
ngOnInit(): void;
ngOnDestroy(): void;
}