import { StickyEvent } from './StickyEvent.js';
/**
 * Signals to a {@link Root} that the pointer is no longer hovering it. This
 * will result in new {@link LeaveEvent | LeaveEvents} being dispatched to
 * hovered {@link Widget | Widgets}.
 *
 * @category Event
 */
export declare class LeaveRootEvent extends StickyEvent {
    static readonly type = "leave-root";
    readonly type: typeof LeaveRootEvent.type;
    readonly userCapturable: false;
    constructor();
}
