export type SliderOrientationRootContext = { direction: 1 | -1; } & ({ type: "horizontal"; startEdge: "left" | "right"; endEdge: "left" | "right"; } | { type: "vertical"; startEdge: "top" | "bottom"; endEdge: "top" | "bottom"; }); export declare function useSliderOrientationContext(): SliderOrientationRootContext; export declare function setupSliderOrientationContextProvider(data: SliderOrientationRootContext): ({ direction: 1 | -1; } & { type: "horizontal"; startEdge: "left" | "right"; endEdge: "left" | "right"; }) | ({ direction: 1 | -1; } & { type: "vertical"; startEdge: "bottom" | "top"; endEdge: "bottom" | "top"; });