/// import { type NotificationListType } from '../types'; type Props = { listType: NotificationListType; unreadNotificationsCount: number; notificationsCount: number; onChange: (listType: NotificationListType) => void; }; export declare const Tabs: ({ listType, notificationsCount, unreadNotificationsCount, onChange, }: Props) => JSX.Element; export {};