import { ListChildComponentProps } from 'react-window'; import { ID, NotificationActivityType, NotificationStatus, NotificationSubTabType } from '@zeniai/client-epic-state'; import { FormSectionProps } from '../../formElements/common/formSection'; import { CheckBoxMode } from '../../formElements/labeledGroupedCheckBoxField/LabeledGroupedCheckBoxField'; import { NotificationGroupDetails } from '../utils/commonHelpers'; /** * Component & its Props */ interface ListItemProps extends FormSectionProps, ListChildComponentProps { checkBoxMode: CheckBoxMode; notificationGroups: NotificationGroupDetails[]; onNotificationClick: (id: ID, entityId: ID, notificationStatus: NotificationStatus, activityType?: NotificationActivityType) => void; } export interface NotificationsListTableProps extends Omit { currentSubTab: NotificationSubTabType; hasMore: boolean; isFetching: boolean; scrollYOffset: number; onFetchNotificationGroups: () => void; onUpdateScrollYOffset: (scrollYOffset: number) => void; } export declare const NotificationsListTable: ({ notificationGroups, isFetching, hasMore, sectionId, checkBoxMode, scrollYOffset, currentSubTab, isDisabled, onUpdateScrollYOffset, onFetchNotificationGroups, onNotificationClick, }: NotificationsListTableProps) => import("react/jsx-runtime").JSX.Element; export {};