export interface PopoverProps { align?: Alignment; position?: Position; } export type Alignment = 'center' | 'start' | 'end'; export type Position = 'top' | 'bottom' | 'left' | 'right';