import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * Get All NTP Profiles
 * Returns all NTP server profiles, optionally filtered.
 */
export declare function getAllNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Get NTP Profile
 * Returns a specific NTP profile by name.
 */
export declare function getNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Create NTP Profile
 * Creates a new NTP server profile.
 */
export declare function createNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Update NTP Profile
 * Updates an existing NTP server profile.
 */
export declare function updateNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
 * Delete NTP Profile
 * Deletes an NTP server profile by name.
 */
export declare function deleteNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
