/**
* Option element for the searchable `ErkSmartSelect` (MUI `Autocomplete`). Replaces MUI `MenuItem`
* in `renderOption`: v9's `MenuItem` requires a surrounding `MenuList` context (it throws without
* one), but an Autocomplete's listbox is a plain `
`, so a styled `- ` is used instead.
* Hover/focus styling comes from MUI's own `.Erk-MuiAutocomplete-option` rules (the option props
* carry that class); this just ports the `ErkMenuItem` look (padding, wrapping, leading-icon layout)
* and the selected background.
*/
declare const ErkAutocompleteOption: import("@emotion/styled").StyledComponent & {
selected?: boolean;
}, import("react").DetailedHTMLProps, HTMLLIElement>, {}>;
export default ErkAutocompleteOption;