/// import { HightlightType } from "../../types"; declare type CommonProps = { id: string; title: string; description: string; images: string[]; gridView?: boolean; link: string; state?: object; isPDF?: boolean; highlight?: HightlightType; hightlightBorderColor?: string; }; declare type Props = CommonProps; declare const ImagePost: ({ id, title, description, images, gridView, link, highlight, isPDF, hightlightBorderColor, }: Props) => JSX.Element; export default ImagePost;