import { type CSSProperties, type HTMLAttributes } from 'react'; export type LiquidImageHoverProps = Omit, 'children'> & { src: string; alt?: string; aspectRatio?: CSSProperties['aspectRatio']; minHeight?: CSSProperties['minHeight']; cursorSize?: number; cursorPower?: number; distortionPower?: number; imageScale?: number; preview?: boolean; }; export declare const LiquidImageHover: ({ className, src, alt, aspectRatio, minHeight, cursorSize, cursorPower, distortionPower, imageScale, preview, style, onPointerDown, onPointerEnter, onPointerLeave, onPointerMove, role, "aria-label": ariaLabel, ...props }: LiquidImageHoverProps) => import("react/jsx-runtime").JSX.Element;