/// import { HightlightType } from '../../types'; declare type Props = { id: string; title: string; description: string; image: string; link: string; postLink: string; gridView?: boolean; highlight?: HightlightType; hightlightBorderColor?: string; }; declare const LinkPost: ({ gridView, id, link, postLink, title, description, image, highlight, hightlightBorderColor, }: Props) => JSX.Element; export default LinkPost;