import type { InputProps } from './types'; /** * Текстовое поле. * @param props Свойства. * @return Элемент. */ export declare function Input({ inputRef, baseInputProps, clearable, onClear, style, className, autoComplete, autoFocus, defaultValue, disabled, id, name, onBlur, onChange, onFocus, onInput, placeholder, readOnly, required, type, value, size, label, failed, caption, blockProps, focused: focusedProp, 'data-testid': testId, ...restProps }: InputProps): import("react").JSX.Element;