UNPKG

@atlaskit/editor-plugin-media

Version:

Media plugin for @atlaskit/editor-core

11 lines (10 loc) 393 B
/** @jsx jsx */ import { jsx } from '@emotion/react'; import type { Command, FloatingToolbarItem } from '@atlaskit/editor-common/types'; type Props = { layoutButtons: FloatingToolbarItem<Command>[]; dispatchCommand: (command: Command) => void; hide: () => void; }; export declare const LayoutGroup: ({ layoutButtons, dispatchCommand, hide, }: Props) => jsx.JSX.Element; export {};