export interface ImageWrapperProps { image: { url: string; alt?: string; width?: string | number; heigth?: string | number; }; } declare const ImageWrapper: ({ image }: ImageWrapperProps) => import("react").JSX.Element; export default ImageWrapper;