import { State } from "../../types"; export declare const sourcesController: (video: HTMLVideoElement) => { allSources: () => State["sources"]; isSourceSupported: () => boolean; getSrc: () => string; enableSource: () => void; isLazy: () => boolean; }; export type SourcesController = ReturnType;