import type { Editor } from '@tiptap/core'; import type { WorkDocumentSectionLayout } from '../work-types'; import type { DocumentLayoutPanelTab } from './document-layout-panel'; export declare function DocumentPageLayoutRibbon({ editor, layout, layoutOpen, pageColor, onLayoutChange, onOpenLayout, onToggleLayout, onPageColorChange, onInsertSection, }: { editor: Editor; layout: WorkDocumentSectionLayout; layoutOpen: boolean; pageColor: string; onLayoutChange: (layout: WorkDocumentSectionLayout) => void; onOpenLayout: (target: DocumentLayoutPanelTab) => void; onToggleLayout: () => void; onPageColorChange: (color: string) => void; onInsertSection: () => void; }): import("react").JSX.Element;