import { PropsWithChildren } from 'react'; export interface ImageLinkProps extends PropsWithChildren { id: string; internalName: string; targetUrl?: string; image: { url: string; width?: string | number; heigth?: string | number; altText?: string; }; } declare const ImageLink: ({ id, image, targetUrl, children }: ImageLinkProps) => import("react").JSX.Element; export default ImageLink;