/** @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 {};
