import { ElementRef, AfterContentChecked, ChangeDetectorRef } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { cn } from './utils/cn'; import * as i0 from "@angular/core"; export declare class MaskedInputComponent implements ControlValueAccessor, AfterContentChecked { private el; private cdr; mask: string; placeholder: string; type: string; disabled: boolean; class: string; error: boolean; size: 'xs' | 'sm' | 'default' | 'lg'; returnRaw: boolean; inputEl: ElementRef; hasPrefix: boolean; hasSuffix: boolean; displayValue: string; private tokens; onChange: any; onTouched: any; constructor(el: ElementRef, cdr: ChangeDetectorRef); ngAfterContentChecked(): void; get computedInputClass(): string; onInput(event: Event): void; private applyMask; private unmask; writeValue(value: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; protected cn: typeof cn; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }