import { FlowNodeModel, Instruction, Processor } from '@tachybase/module-workflow'; export declare class PdfInstruction extends Instruction { run(node: FlowNodeModel, input: any, processor: Processor): Promise<{ result: void; status: 1; } | { result: any; status: -2; }>; }