import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * Checks whether a specific firmware version is available
 * This uses the compliance endpoint and filters the results
 *
 * @param this The n8n execution context
 * @returns Availability status of the firmware version
 */
export declare function checkVersion(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
