export type Position = {
  /**
   * The vertical position.
   */
  vertical?: 'top' | 'middle' | 'bottom';
  /**
   * The horizontal position.
   */
  horizontal?: 'start' | 'center' | 'end';
};