import { type CSSProperties, type MouseEvent, type Ref } from "react"; export interface ImageProps { alt?: string; src: string; sources?: readonly ImageSource[]; className?: string; style?: CSSProperties; width?: number; height?: number; onClick?: (e: MouseEvent) => void; ref?: Ref; } export interface ImageSource { srcSet: string; media?: string; type?: "image/avif" | "image/webp" | "image/png"; } declare const _default: import("react").NamedExoticComponent; export default _default;