import { Element } from 'html-react-parser'; import { IBlockAttributes } from '../types.js'; /** * Returns the block name and attributes * * @param node DomNode * * @returns */ export declare function useBlock(node?: Element): { attributes: T; name: string; className: string; };