/**
 * Performs the requested action on the default NFC adapter
 *
 * @this {AndroidDriver}
 * @param { 'enable' | 'disable'} action
 * @returns {Promise<void>}
 * @throws {Error} if the device under test has no default NFC adapter
 * or there was a failure while performing the action.
 */
export function mobileNfc(this: import("../driver").AndroidDriver, action: "enable" | "disable"): Promise<void>;
export type ADB = import("appium-adb").ADB;
export type AndroidDriver = import("../driver").AndroidDriver;
//# sourceMappingURL=nfc.d.ts.map