import { TitleMetadata } from '../../atoms/title/types'; /** * Title block configuration object. * @type {TitleBlockMetada} * @property title - Main title display configuration. * @property aboveTitle - Title above the main title (optional). * @property bellowTitle - Title below the main title (optional). * @property position - Position of the block ('center', etc.). */ export type TitleBlockMetada = { position: 'center' | 'left' | 'right' | 'leftocenter'; title?: TitleMetadata; aboveTitle?: TitleMetadata; bellowTitle?: TitleMetadata; };