/// import * as https from "https"; import type { StepFunctions, Lambda } from "aws-sdk"; declare function defaultHttpRequest(options: https.RequestOptions, responseBody: string): Promise; declare function defaultStartExecution(req: StepFunctions.StartExecutionInput): Promise; declare function defaultInvokeFunction(req: Lambda.InvocationRequest): Promise; export declare const startExecution: typeof defaultStartExecution; export declare const invokeFunction: typeof defaultInvokeFunction; export declare const httpRequest: typeof defaultHttpRequest; export {};