import { default as React } from 'react'; import { StreamingLinks } from '../api/getAsset'; interface Props { readonly streamingLinks: StreamingLinks | undefined; readonly selectedAdaptiveKey: string | undefined; readonly isOpen: boolean; readonly onClose: () => void; readonly onSelect: (key: string) => void; } export declare const AdaptiveVideoDropdown: React.ForwardRefExoticComponent>; export {};