import OperationInterface from '@/operations/OperationInterface'; import { OperationOptions, ProcessResponse, ProcessType } from '@modfy/interfaces'; import OperationClass from '../operations/OperationClass'; import ProcessInterface from './processInterface'; declare class ProcessServer implements ProcessInterface { operation: OperationInterface; isTransform: boolean; isAsync: boolean; webhookUrl?: string; constructor(operation: OperationInterface, isAsync: boolean, webhookUrl?: string); process: (token: string) => Promise>; } export default ProcessServer; declare const processTransformServer: (token: string, webhookUrl: string, operations: OperationClass[]) => Promise; export { processTransformServer };