import type { Ref } from '@stacksjs/stx'; /** * Page leave detection. * Returns a ref that is true when the mouse has left the page (document). * Uses mouseleave and mouseenter events on the document element. * * @returns A ref that is true when the mouse is outside the page */ export declare function usePageLeave(): Ref;