export declare enum SelectScrollUpArrowDataAttributes { /** * Present when the scroll arrow is animating in. */ startingStyle = "data-starting-style", /** * Present when the scroll arrow is animating out. */ endingStyle = "data-ending-style", /** * Indicates the direction of the scroll arrow. * @type {'up'} */ direction = "data-direction", /** * Present when the scroll arrow is visible. */ visible = "data-visible", /** * Indicates which side the popup is positioned relative to the trigger. * @type {'none' | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'} */ side = "data-side", }