export declare type TInputUnitPosition = 'left' | 'right'; export declare type TInputFormatLang = 'en' | 'fr'; export declare type TInputType = 'text' | 'password' | 'email' | 'tel' | 'search' | 'url' | 'number' | 'date' | 'month' | 'week' | 'time' | 'file' | 'postalcode' | 'zipcode'; export declare type TInputSizeWidth = 'small' | 'xsmall' | 'auto'; export declare type TInputSize = 'small' | 'medium' | 'large'; export interface IInputTextUpdateEvent { id: string; value: string | number; }