import { IBlock } from '../components/index.js'; import { IBlockAttributes } from './types.js'; export interface GroupBlockProps extends IBlockAttributes { tagName?: string; layout?: { type?: string; allowOrientation?: boolean; justifyContent?: 'left' | 'center' | 'right' | 'space-between'; }; } export interface IGroupBlock extends IBlock { } export declare function GroupBlock({ domNode: node, children, component: Component, style, }: IGroupBlock): import("react/jsx-runtime").JSX.Element; /** * @internal */ export declare namespace GroupBlock { const defaultProps: { test: (node: any) => boolean; }; }