export declare function createSliderStore(): { /** * The current slider value. */ value: import("@vidstack/foundation").WritableStore; /** * The value at which the device pointer is pointing to inside the slider. */ pointerValue: import("@vidstack/foundation").WritableStore; /** * The minimum slider value. */ min: import("@vidstack/foundation").WritableStore; /** * The maximum slider value. */ max: import("@vidstack/foundation").WritableStore; /** * Whether the slider thumb is currently being dragged. */ dragging: import("@vidstack/foundation").WritableStore; /** * Whether a device pointer is within the slider bounds. */ pointing: import("@vidstack/foundation").WritableStore; /** * Whether the slider is being interacted with. */ interactive: import("@vidstack/foundation").ReadableStore; }; export declare const sliderStoreContext: import("@vidstack/foundation").Context<{ /** * The current slider value. */ value: import("@vidstack/foundation").WritableStore; /** * The value at which the device pointer is pointing to inside the slider. */ pointerValue: import("@vidstack/foundation").WritableStore; /** * The minimum slider value. */ min: import("@vidstack/foundation").WritableStore; /** * The maximum slider value. */ max: import("@vidstack/foundation").WritableStore; /** * Whether the slider thumb is currently being dragged. */ dragging: import("@vidstack/foundation").WritableStore; /** * Whether a device pointer is within the slider bounds. */ pointing: import("@vidstack/foundation").WritableStore; /** * Whether the slider is being interacted with. */ interactive: import("@vidstack/foundation").ReadableStore; }>; //# sourceMappingURL=store.d.ts.map