import React from 'react'; import type { FormEventHandler, FocusEventHandler } from 'react'; export declare type AutosizeInputProps = Readonly<{ id?: string; readOnly: boolean; ariaLabel?: string; inputValue: string; required?: boolean; ariaLabelledBy?: string; hasSelectedOptions: boolean; onBlur: FocusEventHandler; onFocus: FocusEventHandler; onChange: FormEventHandler; }>; declare const AutosizeInput: React.MemoExoticComponent; onFocus: FocusEventHandler; onChange: FormEventHandler; }> & React.RefAttributes>>; export default AutosizeInput;