import "../../define/vds-media-ui.js"; import * as React from "react"; import { MediaUiElement } from "../../media/ui/index.js"; /** This is a general styling container which holds your UI elements. Media attributes and CSS properties are exposed on this element to help you style your UI elements. Example media attributes include: `media-paused`, `media-can-play`, and `media-waiting`. Example media CSS properties include: `--media-seekable-amount`, `--media-buffered-amount`, and `--media-duration`. This element also handles hiding the UI depending on whether native UI can't be hidden (*cough* iOS). This is simply to avoid double controls (native + custom). The `hidden` attribute will be applied to prevent it from happening. */ declare const MediaUi: React.ForwardRefExoticComponent> & {} & React.HTMLAttributes & { children?: React.ReactNode; } & React.RefAttributes>; export default MediaUi; //# sourceMappingURL=MediaUi.d.ts.map