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