import { Element } from 'html-react-parser'; /** * useBlockAttributes hooks returns the block attributes for a given block based on what it supports * * @param node The reference to the dom node of the block * * * @returns */ export declare function useBlockAttributes(node?: Element): { align: import("../index.js").Align; blockStyle: string; border: import("../index.js").Border; colors: import("../index.js").Colors; typography: import("../index.js").Typography; width: string | undefined; spacing: import("../index.js").Spacing; };