import { INodeProperties } from 'n8n-workflow';
/**
 * Adds descriptions to a target array, avoiding duplicates
 *
 * @param target The target array to add descriptions to
 * @param source The source array of descriptions to add
 */
export declare function addDescriptions(target: INodeProperties[], source: INodeProperties[] | undefined): void;
