import { MediaStore } from '../store/media-store'; /** * HTMLMediaElement typeguard */ export declare const isHTMLMediaElement: (e: unknown) => e is HTMLMediaElement; /** * Gets the HTMLMediaElement from a MediaState */ export declare const getMediaEl: (state: MediaStore) => HTMLMediaElement | undefined;