export declare enum SelectScrollArrowDataAttributes {
    /**
     * Indicates the direction of the arrow.
     * @type {'up' | 'down'}
     */
    direction = "data-direction",
    /**
     * Present when the arrow is visible.
     */
    visible = "data-visible",
    /**
     * Indicates which side the arrow is positioned relative to the select.
     * @type {'none' | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
     */
    side = "data-side"
}
