import { OnInit, SimpleChanges, ElementRef } from '@angular/core';
export declare class InputAcceptDirective implements OnInit {
private el;
/**
* What to allow as input (object of type AcceptKeys or string including any of the following):
*
* - en = allow english alphabet characters
* - ar = allow Arabic alphabet characters
* - digit = allow Numeric characters
*
*/
accept: string | AcceptKeys;
constructor(el: ElementRef);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
getRestrictions(): void;
showTooltip(): void;
onKeyDown(event: any): void;
}
export interface AcceptKeys {
en: boolean;
ar: boolean;
digit: boolean;
}