import React from "react"; export interface ImageProps extends React.ComponentPropsWithoutRef<"img"> { value?: string; } import "./index.less"; declare const Image: (props: ImageProps) => React.JSX.Element | null; export default Image;