import { type SaasflareComponentProps } from "../../providers"; /** Props for the ImageSwapHover component. */ export interface ImageSwapHoverProps extends Omit, keyof SaasflareComponentProps>, SaasflareComponentProps { /** Default image source. */ src: string; /** Image source to show on hover. */ hoverSrc: string; /** Alt text for both images. */ alt: string; /** CSS aspect-ratio. Default: `"1/1"` */ aspectRatio?: string; /** Additional class names. */ className?: string; } /** * Image that crossfades to an alternate source on hover. * * @component * @package ui */ export declare function ImageSwapHover({ src, hoverSrc, alt, aspectRatio, className, surface, radius, animated, iconWeight, style, ...props }: ImageSwapHoverProps): import("react/jsx-runtime").JSX.Element;