import { ImageNodeProps } from '../../types/component-props'; import { default as React } from 'react'; export interface ImageNodeReactEvents { onLoad?: (src: string) => void; onError?: (src: string) => void; onClick?: (payload: [event: React.MouseEvent, src: string]) => void; } export declare function ImageNode(rawProps: ImageNodeProps & ImageNodeReactEvents): import("react/jsx-runtime").JSX.Element; export default ImageNode;