import { OnInit, ElementRef } from '@angular/core';
/**
 * @deprecated Use `jstCurrencyMask` instead.
 */
export declare class MoneyMaskDirective implements OnInit {
    private elementRef;
    private im;
    private el;
    hasDecimal: boolean;
    hasPrefix: boolean;
    prefixSymbol: string;
    private imObject;
    constructor(elementRef: ElementRef);
    ngOnInit(): void;
    onKeyPress(event: any): void;
    onPaste(e: any): void;
    onChange(e: any): void;
    onInput(e: any): void;
    onInputChange(event: any): void;
    restrictNumeric(e: any): boolean;
}
