/// export declare type PIPContextType = { isSupported: boolean; pipWindow: Window | null; requestPipWindow: (width: number, height: number) => Promise; closePipWindow: () => void; }; export declare const PIPContext: import("react").Context;