import React, { CSSProperties, HTMLAttributes } from 'react';
import { Post } from "../../../../../interfaces/types";
export type Props = {
post?: Post;
id?: string | number;
className?: string;
style?: CSSProperties;
bannedWords?: string[];
value?: string;
onChange?: (v: string) => void;
} & HTMLAttributes;
declare const PostCard: ({ post, className }: Props) => React.JSX.Element;
export { PostCard };