import React from 'react'; import { IBlock } from '../../types'; 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; collabDetailsLink?: string; collabDetailsState?: string; onHide?: (id: string) => void; onMove?: (id: string) => void; }; declare const TextPost: React.MemoExoticComponent<({ id, title, description, image, bigVersion, link, state, isPrivate, editLink, editState, onDelete, collabDetailsLink, collabDetailsState, onHide, onMove, isHidden, }: Props & IBlock) => JSX.Element>; export default TextPost;