/** Popovers/menus inside the Properties sheet — above `SheetContent` (`z-[80]`). */ declare const PROPERTIES_SHEET_PORTAL_Z = "z-properties-sheet-portal"; /** Tooltips for icon-only controls inside the sheet — above menus + sheet chrome. */ declare const PROPERTIES_SHEET_TOOLTIP_Z = "z-properties-sheet-tooltip"; /** Inline z-index fallback — arbitrary Tailwind z classes may not win over `z-50` on TooltipContent. */ declare const PROPERTIES_SHEET_TOOLTIP_Z_INDEX = 100; declare function isPropertiesSheetTooltip(className?: string): boolean; export { PROPERTIES_SHEET_PORTAL_Z, PROPERTIES_SHEET_TOOLTIP_Z, PROPERTIES_SHEET_TOOLTIP_Z_INDEX, isPropertiesSheetTooltip };