import { Editor } from '@tiptap/react'; interface SplitViewRightHeaderProps { editor: Editor; /** Whether the Document-tabs overlay panel is open. */ showTabsPanel: boolean; /** Toggle the Document-tabs overlay panel (the List button). */ onToggleTabsPanel: () => void; /** Exit Split View (back to the normal editor). */ onExitSplitView?: () => void; } /** * Split View RIGHT-pane header bar: the Document-tabs toggle (left) and the * download actions (right). Sits above the real ddoc editor in the right pane. */ export declare const SplitViewRightHeader: ({ editor, onExitSplitView, showTabsPanel, onToggleTabsPanel, }: SplitViewRightHeaderProps) => import("react/jsx-runtime").JSX.Element; export {};