import React from 'react';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { LoomPlugin } from '../loomPluginType';
type MenuSectionProps = {
    api: ExtractInjectionAPI<LoomPlugin> | undefined;
    children: React.ReactNode;
};
export declare const MenuSection: ({ children, api }: MenuSectionProps) => React.JSX.Element | null;
export {};
