import { default as React } from 'react'; import { Platform } from '../../utils'; import { MenuItem } from './components/Menu'; export type { Platform } from '../../utils'; export { formatShortcut } from '../../utils'; export type { MenuItem, SubMenuItem, MenuItemAction } from './components/Menu'; export type { UserProfileProps, UserProfileAction, UserInfo, UserStatus } from './components/UserProfile'; export type { CommandPaletteConfig, CommandPaletteItem, CommandPaletteSection, FilterChip, CommandPaletteFooterAction, SearchBarProps, SearchResult, } from './components/SearchBar'; export type { TitlebarAction, TitlebarActionDropdownItem, ToolbarActionsProps } from './components/ToolbarActions'; export { NotificationPanelRoot, NotificationHeader, NotificationTitle, NotificationHeaderActions, NotificationHeaderButton, NotificationList, NotificationItem, NotificationDot, NotificationIcon, NotificationContent, NotificationItemTitle, NotificationDescription, NotificationMeta, NotificationBadge, NotificationSeparator, NotificationFooter, NotificationFooterButton, NotificationEmpty, NotificationEmptyText, NotificationGroup, NotificationGroupLabel, } from './components/ToolbarActions'; export type TitlebarProps = { title?: string | null; logo?: string; size?: 'default' | 'small'; platform?: Platform; menuItems?: MenuItem[]; user?: import('./components/UserProfile').UserInfo | null; userActions?: import('./components/UserProfile').UserProfileAction[]; onSignIn?: () => void; onSignOut?: () => void; commandPalette?: import('./components/SearchBar').CommandPaletteConfig; actions?: import('./components/ToolbarActions').TitlebarAction[]; renderActions?: () => React.ReactNode; onMinus?: () => void; onMinimizeMaximaze?: () => void; onClose?: () => void; }; export default function Titlebar({ title, logo, size, platform: platformOverride, menuItems, user, userActions, onSignIn, onSignOut, commandPalette, actions, renderActions, onClose, onMinus, onMinimizeMaximaze, }: TitlebarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Titlebar.d.ts.map