/** * The class name contract for the listbox-item component */ export interface ListboxItemClassNameContract { /** * The root of the listbox-item component */ listboxItem?: string; /** * The disabled modifier */ listboxItem__disabled?: string; /** * The selected modifier */ listboxItem__selected?: string; }