import { ID } from '@zeniai/client-epic-state'; import { CollaborationApplication, ThreadMetadata } from './utils/CollaborationTypes'; /** * Component & its Props */ export interface AllInboxNotificationsDrawerProps { application: CollaborationApplication; isDrawerOpen: boolean; onCloseAllInboxNotificationsDrawer: () => void; onNotificationClick: (threadMetadata: ThreadMetadata, threadId: ID) => void; } export declare const AllInboxNotificationsDrawer: (props: Readonly) => import("react/jsx-runtime").JSX.Element;