import { WdioOptions } from './options';
export type BrowserName = 'chrome' | 'firefox' | 'edge' | 'android' | 'iphone';
export interface Capability {
    browserName: BrowserName | 'MicrosoftEdge';
    acceptInsecureCerts?: boolean;
    [key: string]: string | boolean | CapabilityOptions;
}
interface CapabilityOptions {
    args?: string[];
    mobileEmulation?: {
        deviceName: string;
    };
}
export declare function capabilitiesFilter({ browsers, capabilities, headless, }: WdioOptions): Capability[];
export {};
