import * as React from "react"; import type { ListItemProps } from "@vertigis/react-ui/ListItem"; interface GeometryPickerListItemProps extends ListItemProps { /** * Callback for when the user presses "Delete" while this item is focused. */ deleteItem: (itemIndex: number) => void; /** * Numeric index referring to this item's position in the list. */ itemIndex: number; /** * Callback for updating the highlight style of the associated graphic on the map. */ updateHighlight: (itemIndex: number, focused: boolean, hovered: boolean) => void; } /** * A GeometryPickerListItem is shown in the Geometry Picker form element. * Its purpose is to aid with detecting changes in focus and hover state to * aid with updating the styling of the corresponding graphics on the map. */ declare const _default: (props: GeometryPickerListItemProps) => React.JSX.Element; export default _default;