import { ElementChildren, ImageElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type ImageProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | ImageElement["children"]; data?: ImageElement["data"]; }; export declare function Image(props: ImageProps): React.JSX.Element;