import type { UseHlsOptions, UseHlsResult } from "../types.js"; /** * Hook for attaching HLS playback to a video element. * Features: * - Native HLS for Safari/iOS * - hls.js for Chrome/Firefox/Edge * - Automatic fallback detection * - Cleanup on unmount * - Rich diagnostic logging to aid debugging of CDN/transcoding issues */ export declare function useHls(options: UseHlsOptions): UseHlsResult;