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