DeviceDeniedTooltip
const DeviceDeniedTooltip: React.FC<{
children: React.ReactNode;
contentWrapperClassName?: string;
deniedDevice: DeniedDevices;
setShowHelpVideo: React.Dispatch<React.SetStateAction<boolean>>;
learnHowToGrantAccessURL?: string;
permissionInfoType?: BlockedBrowserPermissionsInfoType;
mainWrapperClassName?: string;
onClose?: () => void;
visible: boolean;
isTouch?: boolean;
}>;