import React from 'react'; interface NotificationPaginationProps { page?: number; onSetPage?: (event: React.MouseEvent | React.KeyboardEvent | MouseEvent, page: number) => void; onClearAll?: () => void; count?: number; } export declare const NotificationPagination: React.ComponentType; export default NotificationPagination;