import { LambdaProxyHandler, IProcessor, BeforeProcess, MainProcess, AfterProcess, ResponseProcess, OnErrorProcess } from '../types'; export declare class Processor implements IProcessor { main: MainProcess; enviroments: E; before: BeforeProcess; after: AfterProcess; response: ResponseProcess; onError: OnErrorProcess; constructor(params: IProcessor.Params); toHandler(): LambdaProxyHandler; }