import { MaybeRef } from 'vue'; export type MediaControls = { play: () => Promise; pause: () => void; togglePlay: () => Promise; }; export declare function useMediaControls(media: MaybeRef | undefined): MediaControls;