import { BrowserName } from '../actions';
import { DeviceName } from './device-names';
import { Device } from './device-descriptors';
export declare function getDevice(deviceName: DeviceName): Device | undefined;
export declare const defaultDevice: Device;
export declare function getBrowserArgsForDevice(device: Device): {
    andBrowser: (browsername: BrowserName) => string[];
};
