import React from 'react'; import { MobileDevice, MobileDeviceColors } from '../types'; interface IProps { selectedDevice: MobileDevice; selectedColor: MobileDeviceColors; landscape: boolean; children: any; } export declare const BuildDevice: React.FC; export {};