import React from 'react'; declare type Props = { image: string | null | undefined; link?: string; state?: object; isPrivate?: boolean; }; declare const ImageComp: React.MemoExoticComponent<({ image, link, state, isPrivate }: Props) => JSX.Element>; export default ImageComp;