import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * Retrieves firmware upgrade status for a device
 * GET /firmware/v1/status
 *
 * @param this The n8n execution context
 * @returns Status of firmware upgrade for the device
 */
export declare function getStatus(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
