declare function getInteractionType(): {
    pointer: boolean;
    key: boolean;
};
declare function disengage(): void;
declare function engage(): {
    get: typeof getInteractionType;
};
declare const _default: {
    engage: typeof engage;
    disengage: typeof disengage;
};
export default _default;
