import "../../define/vds-mute-button.js"; import * as React from "react"; import { MuteButtonElement } from "../../ui/mute-button/index.js"; /** A button for toggling the muted state of the player. 💡 The following media attributes are applied: - `media-muted`: Applied when media audio has been muted. */ declare const MuteButton: React.ForwardRefExoticComponent> & {} & React.HTMLAttributes & { children?: React.ReactNode; } & React.RefAttributes>; export default MuteButton; //# sourceMappingURL=MuteButton.d.ts.map