import { EnvironmentSpec } from './common/config'; import { NormalizedEnvironment } from '@theintern/digdug/Tunnel'; export default function resolveEnvironments(capabilities: { [key: string]: any; }, environments: EnvironmentOptions[], available?: NormalizedEnvironment[]): EnvironmentSpec[]; export interface EnvironmentOptions { browserName: string | string[]; version?: string | string[] | number | number[]; [key: string]: any; } export interface FlatEnvironment { browserName: string; version?: string; [key: string]: any; }