import { BlockProperties } from '../types'; import { ShapeDividerComponentOptions as ShapeDividerComponentOptionsSchema } from './typesSchema'; export interface ShapeDividerComponentOptions extends Omit { block?: Partial | false; } export interface ShapeDivider { id: string; label: string; value: string; }