/** * Shared hooked-block metadata primitives used by add flows, doctor checks, * and interactive prompts. */ export declare const HOOKED_BLOCK_POSITION_IDS: readonly ['before', 'after', 'firstChild', 'lastChild']; /** * Union of valid `blockHooks` positions accepted by wp-typia workspace flows. */ export type HookedBlockPositionId = (typeof HOOKED_BLOCK_POSITION_IDS)[number]; /** * Fast lookup set for validating hooked-block positions across runtime surfaces. */ export declare const HOOKED_BLOCK_POSITION_SET: Set; /** * Canonical `namespace/slug` block name format required for hooked-block anchors. */ export declare const HOOKED_BLOCK_ANCHOR_PATTERN: RegExp;