UNPKG

@atlaskit/editor-plugin-loom

Version:

Loom plugin for @atlaskit/editor-core

10 lines (9 loc) 380 B
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 {};