/************ Processor: ts ************/ import * as dependency_0 from 'react'; // FILE: image.d.tsx declare namespace ns_image { import ImgHTMLAttributes = dependency_0.ImgHTMLAttributes; import HTMLAttributes = dependency_0.HTMLAttributes; import SyntheticEvent = dependency_0.SyntheticEvent; import ReactNode = dependency_0.ReactNode; type props = { src?: ImgHTMLAttributes["src"]; alt: ImgHTMLAttributes["alt"]; graphSrc?: string; size?: string; className?: HTMLAttributes["className"]; onClick?: (e: SyntheticEvent) => void; children?: ReactNode; loading?: "eager" | "lazy"; error?: string; onError?: (e: SyntheticEvent) => void; title?: ImgHTMLAttributes["title"]; }; /** * A React component that loads an image from a URL. * @param {props} props - props */ function BeyondImage(props: props): JSX.Element; } export import BeyondImage = ns_image.BeyondImage; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };