import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * Get wireless client details from Aruba Central
 *
 * @param this The n8n execution context
 * @returns Wireless client details
 */
export declare function getWirelessClientDetails(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Get wired client details from Aruba Central
 *
 * @param this The n8n execution context
 * @returns Wired client details
 */
export declare function getWiredClientDetails(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
