import React from 'react'; import { TreeItem } from './sections-context'; export declare const EditorSectionsContextProvider: ({ children, sections, }: { children: React.ReactNode; sections: TreeItem[]; }) => JSX.Element; export declare const useEditorSectionsContext: () => TreeItem[];