export interface A11yStatusMessageOptions<Item> {
    highlightedIndex: number | null;
    inputValue: string;
    isOpen: boolean;
    itemToString: (item: Item | null) => string;
    previousResultCount: number;
    resultCount: number;
    highlightedItem: Item;
    selectedItem: Item | null;
}
