import { CloudProviderRuntime } from "@multicloud/sls-core";
export interface AwsLambdaRuntime extends CloudProviderRuntime {
    event: any;
    callback: (err: any, response: any) => void;
    context: {
        awsRequestId: string;
    };
}
