import { HTMLAttributes, RefObject } from 'react'; interface OverlayProps { isOpen?: boolean; onClose?: () => void; isDismissable?: boolean; shouldCloseOnBlur?: boolean; isKeyboardDismissDisabled?: boolean; shouldCloseOnInteractOutside?: (element: HTMLElement) => boolean; } interface OverlayAria { overlayProps: HTMLAttributes; } export declare function useOverlay(_props: OverlayProps, _ref: RefObject): OverlayAria; export {}; //# sourceMappingURL=useOverlay.d.ts.map