/**
 * Enhanced smoothstep function for smooth interpolation with configurable threshold.
 * Used in active heading detection to create virtual positions for better scroll behavior.
 */
export declare function enhancedSmoothstep(input: number, threshold?: number): number;
