import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * AP System Profile Configuration Methods
 * API Reference: https://developer.arubanetworks.com/central/reference/
 * Base Path: /configuration/v1
 */
/**
 * Get all AP system profiles
 */
export declare function getAllAPProfiles(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Create an AP system profile
 */
export declare function createAPProfile(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Update an AP system profile
 */
export declare function updateAPProfile(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Delete an AP system profile
 */
export declare function deleteAPProfile(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
