export type HorizontalAlignment =
  | 'center'
  | 'center-left'
  | 'center-right'
  | 'left'
  | 'right';

export type VerticalAlignment = 'bottom' | 'center' | 'top';

export type TextOverflow = 'hidden' | 'visible';
