/** * External dependencies */ import type { PostId } from '@nab/types'; export type ControlAttributes = { readonly patternId: PostId; readonly testAgainstExistingPatterns?: boolean; }; export type AlternativeAttributes = { readonly name: string; readonly patternId: PostId; readonly isExistingContent?: true; readonly unableToCreateVariant?: true; };