/// interface IProps { data?: any; handleViewDetail?: (any: any) => void; } declare function Collections({ data, handleViewDetail }: IProps): JSX.Element; export default Collections;