import { IBlock } from '../components'; import { IBlockAttributes } from './types'; export interface ButtonsBlockProps extends IBlockAttributes { } /** * The interface for the {@link ButtonsBlock} component. */ export interface IButtonsBlock extends IBlock { } /** * The ButtonsBlock component implements block parsing for the Buttons block. * * This component must be used within a {@link BlocksRenderer} component. * * ```tsx * * * * ``` * * @category Blocks * * @param props Component properties */ export declare function ButtonsBlock({ domNode: node, children, component: Component, style, }: IButtonsBlock): import("react/jsx-runtime").JSX.Element; /** * @internal */ export declare namespace ButtonsBlock { const defaultProps: { test: (node: any) => boolean; }; }