import { BaseInputProps } from '../../types/input'; import { ChangeEvent, HTMLInputTypeAttribute } from 'react'; type InputTextTypes = Extract; export interface InputTextProps extends BaseInputProps { /** Callback that will fire anytime the value of the input changes. */ onChange?: (event: ChangeEvent, value: string) => void; /** The intended type of text. Affects autocomplete and native interface controls. */ type?: InputTextTypes; } declare const InputText: import("react").ForwardRefExoticComponent>; export default InputText;