import * as React from "react"; import { PopoverListItemAppearances } from "../../shared/types/popoverListItemAppearances"; export interface PopoverListItemProps extends React.HTMLProps { appearance?: PopoverListItemAppearances; children: React.ReactNode; disabled?: boolean; index: number; listLength: number; isActive?: boolean; isSelected?: boolean | null; "data-cy"?: string; } declare const PopoverListItem: (props: PopoverListItemProps) => React.JSX.Element; export default PopoverListItem;