import { default as React } from 'react'; import { default as Tooltip } from '../Tooltip/Tooltip'; import { IconSizes } from '../Icons/Icon.models'; type ProductProps = { sold_by_iserve: boolean; sold_by_pattern?: boolean; sold_by_threepn: boolean; }; type TooltipProps = React.ComponentProps; type SellingInfoTooltipProps = { /** Product is needed to determine the content within the tooltip */ product: ProductProps; /** Optionally change the position of the tooltip */ position?: TooltipProps['position']; /** Optionally change the icon size for the tooltip */ iconSize?: IconSizes; }; declare const SellingInfoTooltip: ({ product, position, iconSize, }: SellingInfoTooltipProps) => React.JSX.Element; export default SellingInfoTooltip;