import { IDataObject, IExecuteFunctions, IHookFunctions, IHttpRequestMethods, ILoadOptionsFunctions, IPollFunctions } from 'n8n-workflow'; export declare function closeApiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IPollFunctions, method: IHttpRequestMethods, resource: string, body?: any, qs?: IDataObject, option?: IDataObject): Promise; export declare function closeApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions | IPollFunctions, propertyName: string, method: IHttpRequestMethods, endpoint: string, body?: any, query?: IDataObject): Promise; /** * Convert plain text with newlines to proper HTML format required by Close CRM * Close CRM expects rich text fields to have proper HTML structure with

tags */ /** * Convert plain text with newlines to proper HTML format required by Close CRM * Close CRM expects rich text fields to have proper HTML structure with

tags */ export declare function convertPlainTextToHTML(text: string): string;