import { EventEmitter } from '@angular/core'; import { InputTheme, LabelTheme } from 'twentyfive-style'; import * as i0 from "@angular/core"; export declare class TwentyfiveInputComponent { placeholder: string; inputType: string; value: string; minValue: number; labelText: string; inputDescriptionText: string; invalidText: string; validText: string; id: string; readOnly: boolean; required: boolean; disabled: boolean; showLabel: boolean; showInputDescription: boolean; inputStyle: InputTheme; labelStyle: LabelTheme; customCssClass: string; customLabelClass: string; customInputDescriptionClass: string; isClearable: boolean; customStyles: { [p: string]: any; }; maxCharacters?: number; /** sensibilità dell'incremento del valore numerico default è 1 */ stepValue: any; changeValue: EventEmitter; isValid: boolean; changeInput(event: any): void; clearInput(): void; validateInput(event: any): void; protected readonly InputTheme: typeof InputTheme; protected readonly LabelTheme: typeof LabelTheme; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }