import * as React from 'react'; type Item = { readonly id: string; readonly label: string; }; type Autocomplete2Props = { readonly value: Item | null; readonly items: readonly Item[]; readonly onChange: (value: Item | null) => void; }; declare const _default: React.MemoExoticComponent>>; export default _default;