import React, { FC, PropsWithChildren } from 'react'; import { DropBaseProps } from './Base'; export interface HoverProps { onHover?: (show: boolean | null) => void; DropElement: React.ElementType; show?: boolean; } declare const Hover: FC & PropsWithChildren>; export default Hover;