/// interface IProps { data?: any; handleViewPost?: (any: any) => void; } declare const DetailCard: { ({ data, handleViewPost }: IProps): JSX.Element; propTypes: {}; }; export default DetailCard;