import React from 'react'; declare type Props = { id: string; title: string; description: string; image: string; bigVersion?: boolean; link: string; state?: object; isPrivate?: boolean; editLink?: string; editState?: object; onDelete?: (id: string) => void; }; declare const TextPost: React.MemoExoticComponent<({ id, title, description, image, bigVersion, link }: Props) => JSX.Element>; export default TextPost;