export type PlaybackEngine = "hls" | "videojs"; export type EngineStrategy = "auto" | "force-hls" | "force-videojs"; export interface EngineSelectionInput { src?: string | null; type?: string | null; strategy?: EngineStrategy; hlsSupported?: boolean; isIOS?: boolean; } export declare const isHlsSource: ({ src, type }: Pick) => boolean; export declare const selectPlaybackEngine: ({ src, type, strategy, hlsSupported, isIOS, }: EngineSelectionInput) => PlaybackEngine; //# sourceMappingURL=engine-selector.d.ts.map