export type SystemUIPositionType = 'top' | 'bottom' | 'start_top' | 'start_bottom' | 'end_top' | 'end_bottom' | 'left_top' | 'left_bottom' | 'center_top' | 'center_bottom' | 'right_top' | 'right_bottom'; export type IconCaseTooltipPositionType = Exclude; export type TextCaseTooltipPositionType = Exclude; export type SystemUIPositionOffsetType = { top: number; right: number; bottom: number; left: number; } | null; export type SystemUISizeOffsetType = { height: number; width: number; } | null;