import type { ContainerFormat } from '../core/Constants'; export interface PlatformCapabilities { managedMediaSourceSupported(): boolean; mediaSourceSupported(): boolean; typeSupported(mimeType: string): boolean; isContainerSupported(container: ContainerFormat, index?: number, array?: ContainerFormat[]): boolean; hlsSupported(): boolean; progressiveSupported(): boolean; } export declare enum CapabilitiesExportNames { PlatformCapabilities = "platform-capabilities" }