import * as React from "react"; import { IconProps } from "../../icon/components/Icon"; interface PopoverListItemIconProps extends IconProps { /** * Which side of the menu item the icon appears on */ position?: "start" | "end"; } declare const PopoverListItemIcon: ({ size, position, ...props }: PopoverListItemIconProps) => React.JSX.Element; export default PopoverListItemIcon;