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