import type { WorkDocumentSectionLayout } from '../work-types'; export type DocumentLayoutPanelTab = 'columns' | 'headerFooter' | 'page'; export declare function DocumentLayoutPanel({ layout, activeTab: controlledActiveTab, sectionIndex, sectionCount, onActiveTabChange, onChange, onInsertSection, onMergeSection, onClose, }: { layout: WorkDocumentSectionLayout; activeTab?: DocumentLayoutPanelTab; sectionIndex: number; sectionCount: number; onActiveTabChange?: (tab: DocumentLayoutPanelTab) => void; onChange: (layout: WorkDocumentSectionLayout) => void; onInsertSection: () => void; onMergeSection: () => void; onClose: () => void; }): import("react").JSX.Element;