import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs'; import { Construct } from 'constructs'; export interface LambdaProps { readonly channelId: string; readonly scteDurationInSeconds: number; } export declare class Lambda extends Construct { readonly func: NodejsFunction; constructor(scope: Construct, id: string, props: LambdaProps); }