/** * External dependencies */ import type { EntityKindName, EntityId } from '@nab/types'; export type ControlAttributes = { readonly postId: EntityId; readonly postType: EntityKindName; }; export type AlternativeAttributes = { readonly postId: EntityId; };