import { EventEmitter } from '@angular/core';
import { TccInputMask } from '../../../models/inputMask.model';
export declare class TccSpecialElementComponent {
    _element: TccInputMask.specialElement;
    sizeClasses: string;
    size: TccInputMask.inputWidth;
    searchEnter: boolean;
    specialElementSearch: EventEmitter<TccInputMask.eventOutput<TccInputMask.ValueUnion>>;
    specialElementSearchEnter: EventEmitter<TccInputMask.eventOutput<TccInputMask.ValueUnion>>;
    set element(ele: TccInputMask.specialElement);
    onSearch(value: string): void;
    onEnter(value: string): void;
    focus(): void;
    refresh(): void;
}
