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: { (props: PopoverListItemIconProps): JSX.Element; defaultProps: { size: string; position: string; }; }; export default PopoverListItemIcon;