import { Primitive } from "../../utils/Primitive.js"; import { type ComponentRef, type ComponentPropsWithoutRef } from "react"; export declare namespace MessagePartPrimitiveImage { type Element = ComponentRef; /** * Props for the MessagePartPrimitive.Image component. * Accepts all standard img element props. */ type Props = ComponentPropsWithoutRef; } /** * Renders an image from the current message part context. * * This component displays image content from the current message part, * automatically setting the src attribute from the message part's image data. * * @example * ```tsx * * ``` */ export declare const MessagePartPrimitiveImage: import("react").ForwardRefExoticComponent & import("react").ImgHTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref"> & import("react").RefAttributes>; //# sourceMappingURL=MessagePartImage.d.ts.map