import { ReactNode } from 'react'; import { ScrollableControlsHandler } from '../Scrollable/useScrollable'; import { NotificationsListControlsHandler } from './usePyrionNotifications'; export type PLSidebarContentProps = { helpSection?: ReactNode | (() => ReactNode); notificationsListControls?: React.RefObject | null>; scrollableControls?: React.RefObject; }; export declare const NotificationsActionsSync: ({ notificationsListControls, scrollableControls, }: { notificationsListControls?: React.RefObject | null>; scrollableControls?: React.RefObject; }) => null; declare const _PLSidebarContentInner: ({ helpSection, notificationsListControls, scrollableControls, }: PLSidebarContentProps) => import("react/jsx-runtime").JSX.Element; declare const PLSidebarContent: typeof _PLSidebarContentInner; export default PLSidebarContent;