import type { BlockStyle } from '@wordpress/blocks'; export interface Style extends BlockStyle { block: string; } export type Registry = { [key: string]: Style; }; export declare const unregister: ({ block, ...style }: Style) => void; export declare const register: ({ block, ...style }: Style) => void;