type DataOrientation = 'vertical' | 'horizontal';
type Direction = 'ltr' | 'rtl';
type Type = 'single' | 'multiple';
type ScrollBodyOption = {
    padding?: boolean | number;
    margin?: boolean | number;
};
export type { DataOrientation, Direction, Type, ScrollBodyOption };
