import React from 'react'; type Props = { title: string; children?: React.ReactElement; }; declare const CardPostCommunity: ({ title, children }: Props) => React.JSX.Element; export default CardPostCommunity;