//#region src/components/interactions/tapState.d.ts /** * Shared state for double click and double tap detection. * * @internal */ declare const globalTapState: { time: number; x: number; y: number; }; interface TimelineTapEvent { timeStamp: number; clientX: number; clientY: number; } /** @internal */ declare function resetTimelineTapState(): void; /** @internal */ declare function consumeTimelineDoubleTap(event: TimelineTapEvent): boolean; //#endregion export { consumeTimelineDoubleTap, globalTapState, resetTimelineTapState }; //# sourceMappingURL=tapState.d.mts.map