import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * Retrieves a list of devices with their firmware details
 * GET /firmware/v1/devices
 *
 * @param this The n8n execution context
 * @returns List of devices with firmware details
 */
export declare function getDevices(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
