import type { SyntheticEvent } from 'react';
import type { AutocompleteBaseInputValue } from '../input';
export type AutocompleteBaseOnInputChange = (event: SyntheticEvent | KeyboardEvent | null, value: AutocompleteBaseInputValue) => void;
