import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * Retrieves firmware details for a specific device
 * GET /firmware/v1/devices/{serial}
 *
 * @param this The n8n execution context
 * @returns Firmware details for the specified device
 */
export declare function getDevice(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
