import { WorkflowTask } from './WorkflowTask.js'; import * as Enums from './Enums/Enums.js'; /** * 'Find and add hyperlinks to PDF' task */ export declare class FindAndAddHyperlinksToPdfTask extends WorkflowTask { Items: FindAndAddHyperlinksToPdfTask.Item[]; static readonly TASK_TYPE: Enums.epwfTaskType; constructor(); constructor(task: FindAndAddHyperlinksToPdfTask); } export declare namespace FindAndAddHyperlinksToPdfTask { class Item { SearchWord: string; Url: string; constructor(); constructor(searchWord: string, url: string); } }