/// interface IProps { detail?: any; handleBack?: () => void; handleViewPost?: () => void; } declare const CollectionDetail: ({ detail, handleBack, handleViewPost }: IProps) => JSX.Element; export default CollectionDetail;