import { ManifestEventsTypes, ManifestTypes } from '../types'; export type { ManifestEventsTypes }; type UseManifestTypes = ManifestEventsTypes & { videoId: string; referer: string; drmAuthToken: string; }; export default function useManifest({ videoId, referer, drmAuthToken, onManifestLoadStart, onManifestLoad, onManifestError, }: UseManifestTypes): { loading: boolean; manifest: ManifestTypes | null; }; //# sourceMappingURL=use-manifest.d.ts.map