import type HlsJs from "hls.js"; interface AttachHlsErrorHandlersParams { Hls: typeof HlsJs; hlsInstance: HlsJs; onError: (errorDetail?: string) => void; } export declare const attachHlsErrorHandlers: ({ Hls, hlsInstance, onError }: AttachHlsErrorHandlersParams) => void; export {};