export enum Placement { Top = 'top', Bottom = 'bottom', Left = 'left', Rigth = 'right' } export type PlacementValue = 'left' | 'right' | 'top' | 'bottom';