import React from "react"; import { NotificationPanelState } from "../../../state/QueuesState/QueuesStateTypes"; import { ThemeProps } from "../../theme"; export type NotificationPanelStateProps = NotificationPanelState; export declare const setNotificationsPanel: (isOpen: boolean) => void; export declare const NOTIFICATION_PANEL_DB_ID = "NOTIFICATION_PANEL"; export declare const SCROLLABLE_PANEL_ID = "scrollablePanel"; declare const NotificationPanel: React.FC, never> & { theme?: import("@emotion/react").Theme; }>; export default NotificationPanel;