import type { IDestination } from "../parseEvents/index"; interface ICallDestination { destination: IDestination; LOCAL_PORT: string; event: any; payload: any; requestId: string; lambdaName: string; } export declare const callErrorDest: ({ destination, LOCAL_PORT, event, payload, requestId, lambdaName }: ICallDestination) => void; export declare const callSuccessDest: ({ destination, LOCAL_PORT, event, payload, requestId, lambdaName }: ICallDestination) => void; export {};