import "../../define/vds-play-button.js"; import * as React from "react"; import { PlayButtonElement } from "../../ui/play-button/index.js"; /** A button for toggling the playback state (play/pause) of the current media. 💡 The following media attributes are applied: - `media-paused`: Applied when media playback has paused. */ declare const PlayButton: React.ForwardRefExoticComponent> & {} & React.HTMLAttributes & { children?: React.ReactNode; } & React.RefAttributes>; export default PlayButton; //# sourceMappingURL=PlayButton.d.ts.map