export interface OverlayPositionConfig { originX?: 'start' | 'center' | 'end'; originFallbackX?: 'start' | 'center' | 'end'; originY?: 'top' | 'center' | 'bottom'; originFallbackY?: 'top' | 'center' | 'bottom'; overlayX?: 'start' | 'center' | 'end'; overlayFallbackX?: 'start' | 'center' | 'end'; overlayY?: 'top' | 'center' | 'bottom'; overlayFallbackY?: 'top' | 'center' | 'bottom'; offsetX?: number; offsetY?: number; }