import { ClientContext, CognitoIdentity } from 'aws-lambda'; export declare type InvocationRequest = { initTime: number; region: string; requestId: string; handler: string; functionArn: string; functionName: string; functionVersion: string; runtime?: string; timeout: number; memorySize: number; logGroupName: string; logStreamName: string; envVars: Record; identity?: CognitoIdentity | undefined; clientContext?: ClientContext | undefined; request: any; }; export default InvocationRequest;