import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs to the CreatePdf activity. */ export interface CreatePdfInputs { pageWidth?: number; pageHeight?: number; title?: string; author?: string; subject?: string; language?: "en-us" | string; keywords?: string[]; } /** Defines outputs from the CreatePdf activity. */ export interface CreatePdfOutputs { /** * @description The PDF document. */ result: number[]; } export declare class CreatePdf implements IActivityHandler { static readonly action = "gcx:wf:pdf::CreatePdf"; static readonly suite = "gcx:wf:builtin"; execute(inputs: CreatePdfInputs): CreatePdfOutputs; }