/// export declare type InputAttributes = { value?: string; } & Pick, 'autoComplete' | 'autoFocus' | 'disabled' | 'name' | 'readOnly' | 'placeholder' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick'>; export declare type InputProps = { className?: string; borderless?: boolean; hasError?: boolean; } & InputAttributes;