import React from 'react'; import { BrowserContextOptions } from '../../typings'; export interface DeviceListProps { onDeviceSelect: (deviceName?: string) => void; selectedDevice?: BrowserContextOptions; } declare const DeviceList: React.FC; export { DeviceList };