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