export interface videoPlayerContextType {
    source: string;
    video: HTMLVideoElement | null;
    videoContainer: HTMLDivElement | null;
}
