export declare enum ALIGNMENT { AUTO = "auto", START = "start", CENTER = "center", END = "end" } export declare enum DIRECTION { HORIZONTAL = "horizontal", VERTICAL = "vertical" } export declare enum SCROLL_CHANGE_REASON { OBSERVED = "observed", REQUESTED = "requested" } export declare const scrollProp: { vertical: string; horizontal: string; }; export declare const sizeProp: { readonly vertical: "height"; readonly horizontal: "width"; }; export declare const positionProp: { vertical: string; horizontal: string; }; export declare const marginProp: { vertical: string; horizontal: string; }; export declare const oppositeMarginProp: { vertical: string; horizontal: string; };