/// import { TypeaheadManagerProps } from '../types'; type Args = Pick; declare const getInputProps: ({ activeIndex, id, isFocused, isMenuShown, multiple, onClick, onFocus, placeholder, ...props }: Args) => (inputProps?: {}) => { onClick: import("react").MouseEventHandler; onFocus: (event: import("react").SyntheticEvent) => void; role: string; inputClassName?: string | undefined; 'aria-activedescendant': string | undefined; 'aria-autocomplete': string; 'aria-expanded': boolean; 'aria-haspopup': string; 'aria-multiselectable': true | undefined; 'aria-owns': string | undefined; className: string; autoComplete: string; placeholder: string | undefined; type: string; }; export default getInputProps;