import { type TabOption } from './navigation-tabs'; import type { Notification } from './notifications-panel'; interface AppHeaderProps { title: string; notifications?: Notification[]; onToggleSidebar?: () => void; onToggleMobileMenu?: () => void; sidebarOpen?: boolean; className?: string; activeTab?: string; onTabChange?: (tab: string) => void; showTabs?: boolean; tabOptions?: TabOption[]; onActionClick?: () => void; actionIcon?: React.ReactNode; actionText?: string; onNotificationRemove?: (id: string) => void; onRemoveAll?: () => void; logo?: string; appName?: string; tagline?: string; } export declare function AppHeader({ title, notifications, onToggleSidebar, onToggleMobileMenu, sidebarOpen, className, activeTab, onTabChange, showTabs, tabOptions, onActionClick, actionIcon, actionText, onNotificationRemove, onRemoveAll, logo, appName, tagline, }: AppHeaderProps): import("react/jsx-runtime").JSX.Element; export {};