import { OnInit, ElementRef, Renderer2, AfterViewInit } from '@angular/core'; export declare class FarrisFlexDirective implements OnInit, AfterViewInit { private el; private render; fill: boolean; direction: string; type: string; justifyContent: string; alignItems: string; _width: string | number; _height: string | number; width: any; height: any; readonly currentStyle: string; readonly flexFill: boolean; displayFlex: boolean; nativeClass: string; constructor(el: ElementRef, render: Renderer2); ngOnInit(): void; ngAfterViewInit(): void; resolveSize(size: any): string; getDirection(): string; getJsutifyClass(): string; getAlignClass(): string; }