/** * Configuration for touch optimizations. * * @public */ export interface ITouchOptimizationConfig { /** * Delay before touch drag starts (prevents scroll). * * @defaultValue 300 */ touchStartDelay?: number; /** * Distance threshold for touch move detection. * * @defaultValue 5 */ touchMoveThreshold?: number; /** * Whether to prevent default touch behaviors. * * @defaultValue true */ preventDefault?: boolean; /** * Whether to enable haptic feedback (if available). * * @defaultValue true */ hapticFeedback?: boolean; } //# sourceMappingURL=TouchOptimizationHandler.d.ts.map