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("..").Align;
blockStyle: string;
border: import("..").Border;
colors: import("..").Colors;
typography: import("..").Typography;
width: string | undefined;
spacing: import("..").Spacing;
};