import type { ListState } from '@react-stately/list'; import type { Collection, CollectionElement, Node } from '@react-types/shared'; import type { JengaNotificationProps } from '../types'; export declare type CollectionChildren = CollectionElement | CollectionElement[] | ((item: T) => CollectionElement); export declare type NotificationItemNode = Omit, 'props'> & { props: T; }; export declare type NotificationsListState = Omit, 'collection'> & { collection: Collection>; };