import { CSSProperties } from "react"; declare type HoverImageProps = { src: string; alt: string; className: string; style: CSSProperties; }; export default function HoverImage({ src, alt, style, className }: HoverImageProps): JSX.Element; export {};