import "../../define/vds-fullscreen-button.js"; import * as React from "react"; import { FullscreenButtonElement } from "../../ui/fullscreen-button/index.js"; /** A button for toggling the fullscreen mode of the player. 💡 The following media attributes are applied: - `media-fullscreen`: Applied when the media has entered fullscreen. 🚨 The `hidden` attribute will be present on this element in the event fullscreen cannot be requested (no support). There are default styles for this by setting the `display` property to `none`. Important to be aware of this and update it according to your needs. */ declare const FullscreenButton: React.ForwardRefExoticComponent> & {} & React.HTMLAttributes & { children?: React.ReactNode; } & React.RefAttributes>; export default FullscreenButton; //# sourceMappingURL=FullscreenButton.d.ts.map