import type { MarkdownNode } from "./types"; type ImageRendererProps = { node: MarkdownNode; }; /** * Stateful component that renders a remote image with auto-sizing. * Uses `Image.getSize()` to determine intrinsic dimensions, then * constrains width to the available screen width. */ export declare const ImageRenderer: ({ node }: ImageRendererProps) => import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=ImageRenderer.d.ts.map