/**
 * Axis of the arrangement of virtual list elements.
 * @link https://github.com/DjonnyX/rcx-virtual-list/tree/main/src/lib/src/enums/directions.ts
 * @author Evgenii Grebennikov
 * @email djonnyx@gmail.com
 */
export declare enum Directions {
    /**
     * Horizontal axis.
     */
    HORIZONTAL = "horizontal",
    /**
     * Vertical axis.
     */
    VERTICAL = "vertical"
}
