import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' export interface VideoMenuProps extends HTMLAttrs { children?: ReactNode variant?: Variant menuLabel: string menuOptions: [any] setSelection: Function selectedItem: number | string copy: 'en' | 'fr' } declare const VideoMenu: ComponentType export default VideoMenu