import "../../define/vds-slider-video.js"; import * as React from "react"; import { SliderVideoElement } from "../../ui/slider/index.js"; /** Used to load a low-resolution video to be displayed when the user is hovering or dragging the slider. The point at which they're hovering or dragging (`pointerValue`) is the preview time position. The video will automatically be updated to match, so ensure it's of the same length as the original. 💡 The following attributes are updated for your styling needs: - `video-can-play`: Applied when the video is ready for playback. - `video-error`: Applied when a media error has been encountered. 💡 The `canplay` and `error` events are re-dispatched by this element for you to listen to if needed. */ declare const SliderVideo: React.ForwardRefExoticComponent> & {} & React.HTMLAttributes & { children?: React.ReactNode; } & React.RefAttributes>; export default SliderVideo; //# sourceMappingURL=SliderVideo.d.ts.map