declare const POPOVER_PLACEMENT: { readonly LEFT_START: "left-start"; readonly LEFT: "left"; readonly LEFT_END: "left-end"; readonly RIGHT_START: "right-start"; readonly RIGHT: "right"; readonly RIGHT_END: "right-end"; readonly TOP_START: "top-start"; readonly TOP: "top"; readonly TOP_END: "top-end"; readonly BOTTOM_START: "bottom-start"; readonly BOTTOM: "bottom"; readonly BOTTOM_END: "bottom-end"; }; declare const POPOVER_STRATEGY: { readonly FIXED: "fixed"; readonly ABSOLUTE: "absolute"; }; declare const TRIGGER: { readonly CLICK: "click"; readonly MOUSEENTER: "mouseenter"; readonly FOCUSIN: "focusin"; readonly MANUAL: "manual"; }; declare const COLOR: { readonly TONAL: "tonal"; readonly CONTRAST: "contrast"; }; declare const DEFAULTS: { readonly PLACEMENT: "bottom"; readonly STRATEGY: "absolute"; readonly TRIGGER: "click"; readonly COLOR: "tonal"; readonly OFFSET: 4; readonly VISIBLE: false; readonly ARROW: false; readonly CLOSE_BUTTON: false; readonly FOCUS_TRAP: false; readonly INTERACTIVE: false; readonly PREVENT_SCROLL: false; readonly HIDE_ON_ESCAPE: false; readonly HIDE_ON_BLUR: false; readonly HIDE_ON_WINDOW_BLUR: false; readonly HIDE_ON_CLICK_OUTSIDE: false; readonly HIDE_ON_POINTER_DOWN_OUTSIDE: false; readonly HIDE_ON_SCROLL: false; readonly HIDE_ON_WHEEL: false; readonly FOCUS_BACK: false; readonly BACKDROP: false; readonly FLIP: true; readonly SIZE: false; readonly DELAY: "0,0"; readonly ROLE: "dialog"; readonly Z_INDEX: 1000; readonly DISABLE_ARIA_EXPANDED: false; readonly ANIMATION_FRAME: false; }; export { COLOR, DEFAULTS, POPOVER_PLACEMENT, POPOVER_STRATEGY, TRIGGER };