import AutomationFramework from './automationFramework.js'; /** * WebdriverIO Framework class */ export default class WdioAutomationFramework extends AutomationFramework { constructor(automationFrameworkName: string, automationFrameworkVersion: string); /** * Find instance and track any state for the automation framework * @param {*} automationFrameworkState * @param {*} hookState * @param {*} args */ trackEvent(automationFrameworkState: State, hookState: State, args?: Record): Promise; /** * Resolve instance for the automation framework * @param {*} automationFrameworkState * @param {*} hookState * @param {*} args * @returns instance */ resolveInstance(automationFrameworkState: State, hookState: State, args?: Record): any; /** * Create instance for WebdriverIO * @returns {void} */ trackWebdriverIOInstance(automationFrameworkState: State, args?: Record): void; } //# sourceMappingURL=wdioAutomationFramework.d.ts.map