/// import { Material } from "three"; import { GroupProps } from "@react-three/fiber"; type ImageProps = { src: string; size?: number; framed?: boolean; frameMaterial?: Material; frameWidth?: number; innerFrameMaterial?: Material; } & GroupProps; export declare function Image(props: ImageProps): import("react").JSX.Element; export {};