diff --git a/src/components/tour/tour_step.tsx b/src/components/tour/tour_step.tsx index 3768e379b26..36a3660a48e 100644 --- a/src/components/tour/tour_step.tsx +++ b/src/components/tour/tour_step.tsx @@ -37,7 +37,8 @@ import { EuiTourHeader } from './_tour_header'; import { EuiTourFooter } from './_tour_footer'; import { euiTourStyles, euiTourBeaconStyles } from './tour.styles'; -type _EuiPopoverProps = EuiPopoverProps & HTMLAttributes; +type _EuiPopoverProps = EuiPopoverProps & + Omit, 'content' | 'title' | 'step'>; type _PopoverOverrides = 'button' | 'closePopover'; type _PopoverPartials = 'closePopover'; type ExtendedEuiPopoverProps = Omit<_EuiPopoverProps, _PopoverOverrides> &