import React from 'react'; import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types'; import type { ToolbarComponentTypes } from '@atlaskit/editor-toolbar-model'; import type { ToolbarPlugin } from '../toolbarPluginType'; type SectionProps = { api?: ExtractInjectionAPI; children: React.ReactNode; isSharedSection?: boolean; parents: ToolbarComponentTypes; showSeparatorInFullPagePrimaryToolbar?: boolean; testId?: string; }; export declare const Section: ({ children, parents, api, testId, showSeparatorInFullPagePrimaryToolbar, isSharedSection, }: SectionProps) => React.JSX.Element | null; export {};