import React from 'react'; import { MobileDevice, MobileDeviceColors, MobileDevices } from '../types'; interface IMenuProps { selectedDevice: MobileDevice; allowedDevices?: MobileDevices[]; selectedColor: MobileDeviceColors; landscape: boolean; updateSelectedDevice: (device: MobileDevice, color: MobileDeviceColors) => void; updateLandscape: (value: boolean) => void; } export declare const Menu: React.FC; export {};