```ts
type NotificationTooltipPosition = 
  | "topRight"
  | "topCenter"
  | "topLeft"
  | "topStart"
  | "topEnd"
  | "bottomRight"
  | "bottomCenter"
  | "bottomLeft"
  | "bottomStart"
  | "bottomEnd"
  | "left"
  | "right";
```
