import React, { PropsWithChildren } from 'react'; interface HoverProps extends React.HTMLAttributes { className?: string; prefix?: string; disabled?: boolean; onClick?: (e: any) => void; } export declare function IconHover(props: PropsWithChildren): JSX.Element; export {};