import React from 'react'; import { ViewportSize } from 'playwright-core/types/types'; export interface DeviceListItemProps { name: string; viewportSize?: ViewportSize; onClick: (deviceName: string) => void; selected?: boolean; value?: string; } declare const DeviceListItem: React.FC; export { DeviceListItem };